diff --git a/analyses/2019_03_Aimaanhasan__issue#35_unique_IDs.ipynb b/analyses/2019_03_Aimaanhasan__issue#35_unique_IDs.ipynb new file mode 100644 index 0000000..45238d8 --- /dev/null +++ b/analyses/2019_03_Aimaanhasan__issue#35_unique_IDs.ipynb @@ -0,0 +1,2480 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Analysis - Aiman Hasan - Issue # 35\n", + "\n", + "This analysis is built up on the analysis in `analyses/hello_mozfest.ipynb`. \n", + "\n", + "# Analysis - 1\n", + "The unique values are found out by checking keywords such as **\" = , id, ID, iD, Id, =, ;, : \"** in values_1000 column, because ` = ` are separated by **\" =, ;, :\"**. \n", + "1. Finding keyword of **id** in values, shows that `RTCPeerConnection.localDescription`, `window.document.cookie`,`window.localStorage`, `window.name`, `window.sessionStorage` are the API symbols which are estimated to store unique values. `window.document.cookie` is estimated to store most values. The plot for reference can be found here \n", + "\n", + "1. Finding separators or assignmnents such as **=, ;, :**, shows that `HTMLCanvasElement.style`, `RTCPeerConnection.localDescription`, `window.document.cookie`, `window.localStorage`, `window.name`, `window.navigator.userAgent`, `window.sessionStorage` are the API symbols which are estimated to store unique values. `window.document.cookie` is estimated to store most values again. The plot for reference can be found here \n", + "\n", + "1. For more accuracy, an analysis is done with **\"=\"** assignment only. shows that `HTMLCanvasElement.style`, `RTCPeerConnection.localDescription`, `window.document.cookie`, `window.localStorage`, `window.name`, `window.navigator.userAgent`, `window.sessionStorage` are the API symbols which are estimated to store unique values. `window.document.cookie` is estimated to store most values again. The plot for reference can be found here \n", + "\n", + "# Analysis - 2\n", + "Work not completed yet. Can be found here\n" + ] + }, + { + "cell_type": "code", + "execution_count": 192, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import os.path" + ] + }, + { + "cell_type": "code", + "execution_count": 193, + "metadata": {}, + "outputs": [], + "source": [ + "## Don't limit pandas display.\n", + "pd.set_option(\"display.max_rows\", None)\n", + "pd.set_option(\"display.max_columns\", None)\n", + "pd.set_option(\"display.max_colwidth\", -1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Specify the base dir where you have saved the dataset." + ] + }, + { + "cell_type": "code", + "execution_count": 194, + "metadata": {}, + "outputs": [], + "source": [ + "DATA_DIR = \"C:\\\\Users\\\\hamza\\\\Downloads\\\\safe_dataset.sample (1)\" ## Change me" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We are primarily interested in the `value` column, representing the value returned from each API call. We retain it and a few other relevant columns for analysis." + ] + }, + { + "cell_type": "code", + "execution_count": 195, + "metadata": {}, + "outputs": [], + "source": [ + "COLUMNS = [\n", + " \"arguments\",\n", + " \"location\", ## The URL of the page that was crawled\n", + " \"script_url\", ## The script where the call was made\n", + " \"symbol\", ## The JS API symbol\n", + " \"value\", ## The value returned\n", + " \"value_1000\", ## The value truncated to 1000 chars\n", + " \"value_len\" ## The number of chars in the full value string\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 196, + "metadata": {}, + "outputs": [], + "source": [ + "SAMPLE_DATA_PARQUET = os.path.join(DATA_DIR,\n", + " \"sample\",\n", + " \"part-00000-34d9b361-ea79-42eb-82ee-9c9f9259c339-c000.snappy.parquet\")" + ] + }, + { + "cell_type": "code", + "execution_count": 197, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_parquet(SAMPLE_DATA_PARQUET,\n", + " engine=\"pyarrow\",\n", + " columns=COLUMNS)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Restrict to operations that returned a value." + ] + }, + { + "cell_type": "code", + "execution_count": 198, + "metadata": {}, + "outputs": [], + "source": [ + "df_value_exists = df[df.value_len > 0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How many rows with values are there in the sample?" + ] + }, + { + "cell_type": "code", + "execution_count": 199, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "7314" + ] + }, + "execution_count": 199, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(df_value_exists)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How many unique values are there?" + ] + }, + { + "cell_type": "code", + "execution_count": 200, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1223" + ] + }, + "execution_count": 200, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(df_value_exists.value.unique())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What are the symbols that returned values?" + ] + }, + { + "cell_type": "code", + "execution_count": 201, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "CanvasRenderingContext2D.fillStyle 39 \n", + "CanvasRenderingContext2D.font 18 \n", + "CanvasRenderingContext2D.globalCompositeOperation 2 \n", + "CanvasRenderingContext2D.lineWidth 10 \n", + "CanvasRenderingContext2D.shadowBlur 20 \n", + "CanvasRenderingContext2D.shadowColor 20 \n", + "CanvasRenderingContext2D.shadowOffsetX 20 \n", + "CanvasRenderingContext2D.shadowOffsetY 20 \n", + "CanvasRenderingContext2D.strokeStyle 4 \n", + "CanvasRenderingContext2D.textBaseline 7 \n", + "HTMLCanvasElement.height 35 \n", + "HTMLCanvasElement.nodeName 2 \n", + "HTMLCanvasElement.nodeType 2 \n", + "HTMLCanvasElement.style 16 \n", + "HTMLCanvasElement.width 53 \n", + "RTCPeerConnection.localDescription 1 \n", + "RTCPeerConnection.onicecandidate 2 \n", + "window.Storage.length 78 \n", + "window.document.cookie 3189\n", + "window.localStorage 442 \n", + "window.name 109 \n", + "window.navigator.appCodeName 3 \n", + "window.navigator.appName 135 \n", + "window.navigator.appVersion 74 \n", + "window.navigator.buildID 2 \n", + "window.navigator.cookieEnabled 45 \n", + "window.navigator.doNotTrack 21 \n", + "window.navigator.geolocation 2 \n", + "window.navigator.language 96 \n", + "window.navigator.languages 21 \n", + "window.navigator.mimeTypes[application/futuresplash].description 7 \n", + "window.navigator.mimeTypes[application/futuresplash].suffixes 9 \n", + "window.navigator.mimeTypes[application/futuresplash].type 13 \n", + "window.navigator.mimeTypes[application/x-shockwave-flash].description 7 \n", + "window.navigator.mimeTypes[application/x-shockwave-flash].suffixes 9 \n", + "window.navigator.mimeTypes[application/x-shockwave-flash].type 23 \n", + "window.navigator.onLine 8 \n", + "window.navigator.oscpu 2 \n", + "window.navigator.platform 120 \n", + "window.navigator.plugins[Shockwave Flash].description 238 \n", + "window.navigator.plugins[Shockwave Flash].filename 22 \n", + "window.navigator.plugins[Shockwave Flash].length 10 \n", + "window.navigator.plugins[Shockwave Flash].name 90 \n", + "window.navigator.plugins[Shockwave Flash].version 10 \n", + "window.navigator.product 43 \n", + "window.navigator.productSub 2 \n", + "window.navigator.userAgent 1797\n", + "window.screen.colorDepth 166 \n", + "window.screen.pixelDepth 14 \n", + "window.sessionStorage 236 \n", + "Name: symbol, dtype: int64" + ] + }, + "execution_count": 201, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_value_exists.symbol.value_counts().sort_index()" + ] + }, + { + "cell_type": "code", + "execution_count": 202, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
argumentslocationscript_urlsymbolvaluevalue_1000value_len
0{}https://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.comhttps://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.comwindow.namefb_xdm_frame_httpsfb_xdm_frame_https18
1{}https://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.comhttps://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.comwindow.namefb_xdm_frame_httpsfb_xdm_frame_https18
3{}https://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.comhttps://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.comwindow.navigator.userAgentMozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.068
4{}https://cas.us.criteo.com/delivery/r/afr.php?did=5a34c73ff17390f0eaeb591979874b00&z=WjTHPwAHZYkKT7BIAAcskrRh4Qozh3b-c-mtZg&u=%7C7J5NcLNwKWZvhHazrdQ0r3pEybQM2VrhNSue519M%2FnU%3D%7C&c1=M5BADJe1UR3zJ2HNju9b10FggySKKMK0AoYTtPDcqDnSIQIZUQPlDupK--OP2eR-eNGQ46cgN3mwCl5UMg4IstlvomsUbHEHUzImPBAbL0KpTFeMsdEkBo28MAQVY_79HvMen3pU9pjoRxbnxk_AxatU3fdvCPtFY7Wzui5q962zi71J5i_HHNmYi7XbHxLl1v3NLOEqWiI-3QfHE1byzwOhuyge44QAJfUpukDSr4X723xUoquihjIy6b6D_yU9AsLHIIxKQk64_ES4G8moUw5dbt7SG3KWRhyjzAZW5acfRwaX8v33UzaCSZKj4O0XffzJaDiMmsprtAOP0J4xHPtfZqvurKt_x3z5y83mK1o&ct0=https://adclick.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DCcqaRP8c0WonLHcjgvgKS2ZyADO7lmPBNsu23nZ0BwI23ARABIABgyQaCARdjYS1wdWItNTc4NzU5MjQ4Mzc2Njc2MKABrN3-6APIAQngAgCoAwGqBMUBT9DGnU9Xf5zpWjsp7PXxVDLu7mhvsOzx8jjeTb-wk_FUQNpBqVd4QxwydKBkX31VemFtAuP1QMeGjoHagpA44JfU11OU46ZLmBKcADPeCDg8kDPJvowA7EbbZ6gvml2aRO7nKo1LHNbLoGTBvP6gmhnbhVqThagbrECDM6qxbcRiiWobTKajDG8KeWma5flmrMZiQe5Lu3cyX_WMmu36IIP2lojiMZaZvgiE_ncYb24UZCKxrORb0gO54t1XHQFwzDnBRPXgBAGABufvkeKYhIzL9gGgBiGoB6a-G9gHANIIBQiAYRAB8ggbYWR4LXN1YnN5bi0wOTI1MDI4NTk2NjIxNjE3%26num%3D1%26sig%3DAOD64_1ibrZmc1pVLttz4doqoDmSHOvwXg%26client%3Dca-pub-5787592483766760%26adurl%3Dhttps://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.jswindow.navigator.userAgentMozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.068
5{}http://pos.baidu.com/rcwm?rdid=2835655&dc=3&di=u2835655&dri=0&dis=0&dai=3&ps=3595x465&enu=encoding&dcb=___adblockplus&dtm=HTML_POST&dvi=0.0&dci=-1&dpt=none&tsr=0&tpr=1513385038346&ti=%E5%93%8D%E5%B7%A2%E7%9C%8B%E7%9C%8B(%E5%8E%9F%E8%BF%85%E9%9B%B7%E7%9C%8B%E7%9C%8B)%E5%85%8D%E8%B4%B9%E4%B8%8B%E8%BD%BD_%E5%93%8D%E5%B7%A2%E7%9C%8B%E7%9C%8B(%E5%8E%9F%E8%BF%85%E9%9B%B7%E7%9C%8B%E7%9C%8B)%E5%AE%98%E6%96%B9%E4%B8%8B%E8%BD%BD_%E5%93%8D%E5%B7%A2%E7%9C%8B%E7%9C%8B(%E5%8E%9F%E8%BF%85%E9%9B%B7%E7%9C%8B%E7%9C%8B)5.2.0.56-%E5%8D%8E%E5%86%9B%E8%BD%AF%E4%BB%B6%E5%9B%AD&ari=2&dbv=0&drs=1&pcs=1353x697&pss=1353x3840&cfv=28&cpl=1&chi=1&cce=true&cec=UTF-8&tlm=1513385041&rw=697&ltu=http%3A%2F%2Fwww.onlinedown.net%2Fsoft%2F119012.htm&ecd=1&uc=1366x768&pis=-1x-1&sr=1366x768&tcn=1513385041&qn=3a0e875efc7e7034&tt=1513385038271.3180.3403.3404http://cpro.baidustatic.com/cpro/ui/noexpire/js/4.0.1/adClosefeedbackUpgrade.min.jswindow.navigator.userAgentMozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.068
\n", + "
" + ], + "text/plain": [ + " arguments \\\n", + "0 {} \n", + "1 {} \n", + "3 {} \n", + "4 {} \n", + "5 {} \n", + "\n", + " location \\\n", + "0 https://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.com \n", + "1 https://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.com \n", + "3 https://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.com \n", + "4 https://cas.us.criteo.com/delivery/r/afr.php?did=5a34c73ff17390f0eaeb591979874b00&z=WjTHPwAHZYkKT7BIAAcskrRh4Qozh3b-c-mtZg&u=%7C7J5NcLNwKWZvhHazrdQ0r3pEybQM2VrhNSue519M%2FnU%3D%7C&c1=M5BADJe1UR3zJ2HNju9b10FggySKKMK0AoYTtPDcqDnSIQIZUQPlDupK--OP2eR-eNGQ46cgN3mwCl5UMg4IstlvomsUbHEHUzImPBAbL0KpTFeMsdEkBo28MAQVY_79HvMen3pU9pjoRxbnxk_AxatU3fdvCPtFY7Wzui5q962zi71J5i_HHNmYi7XbHxLl1v3NLOEqWiI-3QfHE1byzwOhuyge44QAJfUpukDSr4X723xUoquihjIy6b6D_yU9AsLHIIxKQk64_ES4G8moUw5dbt7SG3KWRhyjzAZW5acfRwaX8v33UzaCSZKj4O0XffzJaDiMmsprtAOP0J4xHPtfZqvurKt_x3z5y83mK1o&ct0=https://adclick.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DCcqaRP8c0WonLHcjgvgKS2ZyADO7lmPBNsu23nZ0BwI23ARABIABgyQaCARdjYS1wdWItNTc4NzU5MjQ4Mzc2Njc2MKABrN3-6APIAQngAgCoAwGqBMUBT9DGnU9Xf5zpWjsp7PXxVDLu7mhvsOzx8jjeTb-wk_FUQNpBqVd4QxwydKBkX31VemFtAuP1QMeGjoHagpA44JfU11OU46ZLmBKcADPeCDg8kDPJvowA7EbbZ6gvml2aRO7nKo1LHNbLoGTBvP6gmhnbhVqThagbrECDM6qxbcRiiWobTKajDG8KeWma5flmrMZiQe5Lu3cyX_WMmu36IIP2lojiMZaZvgiE_ncYb24UZCKxrORb0gO54t1XHQFwzDnBRPXgBAGABufvkeKYhIzL9gGgBiGoB6a-G9gHANIIBQiAYRAB8ggbYWR4LXN1YnN5bi0wOTI1MDI4NTk2NjIxNjE3%26num%3D1%26sig%3DAOD64_1ibrZmc1pVLttz4doqoDmSHOvwXg%26client%3Dca-pub-5787592483766760%26adurl%3D \n", + "5 http://pos.baidu.com/rcwm?rdid=2835655&dc=3&di=u2835655&dri=0&dis=0&dai=3&ps=3595x465&enu=encoding&dcb=___adblockplus&dtm=HTML_POST&dvi=0.0&dci=-1&dpt=none&tsr=0&tpr=1513385038346&ti=%E5%93%8D%E5%B7%A2%E7%9C%8B%E7%9C%8B(%E5%8E%9F%E8%BF%85%E9%9B%B7%E7%9C%8B%E7%9C%8B)%E5%85%8D%E8%B4%B9%E4%B8%8B%E8%BD%BD_%E5%93%8D%E5%B7%A2%E7%9C%8B%E7%9C%8B(%E5%8E%9F%E8%BF%85%E9%9B%B7%E7%9C%8B%E7%9C%8B)%E5%AE%98%E6%96%B9%E4%B8%8B%E8%BD%BD_%E5%93%8D%E5%B7%A2%E7%9C%8B%E7%9C%8B(%E5%8E%9F%E8%BF%85%E9%9B%B7%E7%9C%8B%E7%9C%8B)5.2.0.56-%E5%8D%8E%E5%86%9B%E8%BD%AF%E4%BB%B6%E5%9B%AD&ari=2&dbv=0&drs=1&pcs=1353x697&pss=1353x3840&cfv=28&cpl=1&chi=1&cce=true&cec=UTF-8&tlm=1513385041&rw=697<u=http%3A%2F%2Fwww.onlinedown.net%2Fsoft%2F119012.htm&ecd=1&uc=1366x768&pis=-1x-1&sr=1366x768&tcn=1513385041&qn=3a0e875efc7e7034&tt=1513385038271.3180.3403.3404 \n", + "\n", + " script_url \\\n", + "0 https://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.com \n", + "1 https://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.com \n", + "3 https://staticxx.facebook.com/connect/xd_arbiter/r/lY4eZXm_YWu.js?version=42#channel=f30ef17b61f384&origin=http%3A%2F%2Fwww.ubitennis.com \n", + "4 https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js \n", + "5 http://cpro.baidustatic.com/cpro/ui/noexpire/js/4.0.1/adClosefeedbackUpgrade.min.js \n", + "\n", + " symbol \\\n", + "0 window.name \n", + "1 window.name \n", + "3 window.navigator.userAgent \n", + "4 window.navigator.userAgent \n", + "5 window.navigator.userAgent \n", + "\n", + " value \\\n", + "0 fb_xdm_frame_https \n", + "1 fb_xdm_frame_https \n", + "3 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n", + "4 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n", + "5 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n", + "\n", + " value_1000 \\\n", + "0 fb_xdm_frame_https \n", + "1 fb_xdm_frame_https \n", + "3 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n", + "4 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n", + "5 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n", + "\n", + " value_len \n", + "0 18 \n", + "1 18 \n", + "3 68 \n", + "4 68 \n", + "5 68 " + ] + }, + "execution_count": 202, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_value_exists.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 203, + "metadata": {}, + "outputs": [], + "source": [ + "df_id=df_value_exists[df_value_exists.value_1000.str.contains('ID', case = False, regex = True)]\n", + "df_equals = df_value_exists[df_value_exists.value_1000.str.contains('=', regex = True)]\n", + "df_all_separators_assignments = df_value_exists[df_value_exists.value_1000.str.contains('=|;|:', regex = True)]" + ] + }, + { + "cell_type": "code", + "execution_count": 204, + "metadata": {}, + "outputs": [], + "source": [ + "df_symbol_id_counts = df_id.symbol.value_counts().sort_index()\n", + "df_symbol_equals_counts = df_equals.symbol.value_counts().sort_index()\n", + "df_all_separators_assignments_counts = df_all_separators_assignments.symbol.value_counts().sort_index()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "\n", + "Plot showing symbols found which have returned values containing **ID** as a keyword." + ] + }, + { + "cell_type": "code", + "execution_count": 205, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 205, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYAAAAGoCAYAAABPODLkAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3Xl45FWZ9vHvTeOCyCqNIjC2S4MiKkK7giOKIKADOq64oTgyjqi4i46K4obOqK/gigKi4zI4iiKibLIqKt2ANKgIg6gIIyirIKv3+8fvFF2dpNLpJqmTyrk/11VX6ndS6TypTuqpsz1HtomIiPasVjuAiIioIwkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENGr12gFMZoMNNvCCBQtqhxERMVKWLFnyZ9vzV/S4WZ0AFixYwOLFi2uHERExUiT9biqPyxBQRESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo2b1TuCYXgv2+37tEAC49MBn1A4hIkgPICKiWUkAERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo1aYACRtKulkSb+SdIGkfUv7+pJOkHRR+bheaZekgyRdLOk8SVv3/Vt7lsdfJGnPmfuxIiJiRabSA7gdeLPthwGPB/aRtAWwH3CS7YXASeUaYBdgYbntDXwWuoQB7A88DngssH8vaURExPCtMAHYvsL22eX+DcCvgI2B3YEjysOOAJ5V7u8OfNmdnwLrStoIeDpwgu2rbV8DnADsPK0/TURETNlKzQFIWgA8GvgZcF/bV0CXJIANy8M2Bv7Q92WXlbZB7WO/x96SFktafNVVV61MeBERsRKmnAAk3Rv4FvAG29dP9tAJ2jxJ+/IN9iG2F9leNH/+/KmGFxERK2lKCUDS3ehe/L9q+9ul+U9laIfy8crSfhmwad+XbwJcPkl7RERUMJVVQAIOBX5l++N9nzoa6K3k2RP4bl/7y8pqoMcD15UhouOAnSStVyZ/dyptERFRwepTeMy2wEuBpZLOLW3vBA4EjpT0SuD3wPPK544FdgUuBm4CXgFg+2pJ7wfOKo87wPbV0/JTRETESlthArB9BhOP3wPsMMHjDewz4N86DDhsZQKMiIiZkZ3AERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENCoJICKiUUkAERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhq1wgQg6TBJV0o6v6/tvZL+KOncctu173PvkHSxpAslPb2vfefSdrGk/ab/R4mIiJUxlR7Al4CdJ2j/hO2tyu1YAElbAC8EHl6+5jOS5kmaB3wa2AXYAtijPDYiIipZfUUPsH2apAVT/Pd2B75h+xbgt5IuBh5bPnex7UsAJH2jPPaXKx1xRERMi7syB/BaSeeVIaL1StvGwB/6HnNZaRvUHhERlaxqAvgs8GBgK+AK4GOlXRM81pO0jyNpb0mLJS2+6qqrVjG8iIhYkVVKALb/ZPsO238HvsCyYZ7LgE37HroJcPkk7RP924fYXmR70fz581clvIiImIJVSgCSNuq7fDbQWyF0NPBCSfeQ9EBgIfBz4CxgoaQHSro73UTx0asedkRE3FUrnASW9HVge2ADSZcB+wPbS9qKbhjnUuBfAWxfIOlIusnd24F9bN9R/p3XAscB84DDbF8w7T9NRERM2VRWAe0xQfOhkzz+g8AHJ2g/Fjh2paKLiIgZk53AERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENCoJICKiUUkAERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agVJgBJh0m6UtL5fW3rSzpB0kXl43qlXZIOknSxpPMkbd33NXuWx18kac+Z+XEiImKqptID+BKw85i2/YCTbC8ETirXALsAC8ttb+Cz0CUMYH/gccBjgf17SSMiIupYYQKwfRpw9Zjm3YEjyv0jgGf1tX/ZnZ8C60raCHg6cILtq21fA5zA+KQSERFDtKpzAPe1fQVA+bhhad8Y+EPf4y4rbYPax5G0t6TFkhZfddVVqxheRESsyHRPAmuCNk/SPr7RPsT2ItuL5s+fP63BRUTEMquaAP5UhnYoH68s7ZcBm/Y9bhPg8knaIyKiklVNAEcDvZU8ewLf7Wt/WVkN9HjgujJEdBywk6T1yuTvTqUtIiIqWX1FD5D0dWB7YANJl9Gt5jkQOFLSK4HfA88rDz8W2BW4GLgJeAWA7aslvR84qzzuANtjJ5YjImKIVpgAbO8x4FM7TPBYA/sM+HcOAw5bqegiImLGZCdwRESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENCoJICKiUUkAERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENOouJQBJl0paKulcSYtL2/qSTpB0Ufm4XmmXpIMkXSzpPElbT8cPEBERq2Y6egBPsb2V7UXlej/gJNsLgZPKNcAuwMJy2xv47DR874iIWEUzMQS0O3BEuX8E8Ky+9i+781NgXUkbzcD3j4iIKbirCcDA8ZKWSNq7tN3X9hUA5eOGpX1j4A99X3tZaVuOpL0lLZa0+KqrrrqL4UVExCCr38Wv39b25ZI2BE6Q9OtJHqsJ2jyuwT4EOARg0aJF4z4fERHT4y71AGxfXj5eCRwFPBb4U29op3y8sjz8MmDTvi/fBLj8rnz/iIhYdaucACStKWmt3n1gJ+B84Ghgz/KwPYHvlvtHAy8rq4EeD1zXGyqKiIjhuytDQPcFjpLU+3e+ZvuHks4CjpT0SuD3wPPK448FdgUuBm4CXnEXvndERNxFq5wAbF8CPGqC9r8AO0zQbmCfVf1+ERExvbITOCKiUUkAERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENCoJICKiUavXDiCihgX7fb92CABceuAzaocQDUsPICKiUUkAERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCwDjYgoWlsenB5ARESjkgAiIhqVBBAR0aihJwBJO0u6UNLFkvYb9vePiIjOUBOApHnAp4FdgC2APSRtMcwYIiKiM+wewGOBi21fYvtW4BvA7kOOISIiGP4y0I2BP/RdXwY8bsgxRESf1pY+xjLDTgCaoM3LPUDaG9i7XP5V0oUzHtWKbQD8uXYQs8Rdfi70kWmKpL48F8vkuVhmNjwXD5jKg4adAC4DNu273gS4vP8Btg8BDhlmUCsiabHtRbXjmA3yXCyT52KZPBfLjNJzMew5gLOAhZIeKOnuwAuBo4ccQ0REMOQegO3bJb0WOA6YBxxm+4JhxhAREZ2h1wKyfSxw7LC/7100q4akKstzsUyei2XyXCwzMs+FbK/4URERMeekFERERKOSACIiGpUEEBHRqBwIMwlJG9NtqLjzebJ9Wr2I6pD0AGCh7RMlrQGsbvuG2nFFzAaSBLwYeJDtAyT9A3A/2z+vHNoKZRJ4AEkfAV4A/BK4ozTb9m71oho+Sa+i25m9vu0HS1oIfM72DpVDGzpJ9wU+BNzf9i6lkOETbB9aObShy3OxjKTPAn8Hnmr7YZLWA463/ZjKoa1QhoAGexawue1dbf9TuTX14l/sA2wLXA9g+yJgw6oR1fMluj0s9y/XvwHeUC2aur5Enouex9neB7gZwPY1wN3rhjQ1SQCDXQLcrXYQs8AtpXIrAJJWZ0z9poZsYPtIund72L6dZb3D1uS5WOa2UureAJLmU56X2S5zAIPdBJwr6STgll6j7dfXC6mKUyW9E1hD0o7Aa4DvVY6plhsl3Ydlf+iPB66rG1I1eS6WOQg4CthQ0geB5wLvqhvS1GQOYABJe07UbvuIYcdSk6TVgFcCO9FVcz0O+KIb/MWRtDVwMLAlcD4wH3iu7fOqBlZBnovlSXoosAPd38hJtn9VOaQpSQKYRClYt1m5vND2bTXjifrKENjmdH/oTf9O5LnoSFp/guYbRuH5SAIYQNL2wBHApXS/4JsCe7ayDFTSkbafL2kpE4z5235khbCqkvTPEzRfByy1feWw46mpjHk/A1jA8sukP14rplokXUr3+nAN3WvFusAVwJXAq2wvqRfd5DIHMNjHgJ1sXwggaTPg68A2VaMann3Lx2dWjWJ2eSXwBODkcr098FNgM0kH2P5KrcAq+B7dqpeljMiE5wz6IXCU7eMAJO0E7AwcCXyGWXzqYRLAYHfrvfgD2P6NpGZWBdm+otzdwvYP+j8n6dXA54YfVXV/Bx5m+09w51r4z9L9gZ8GtJQANmmxFzjAItuv7l3YPl7Sh2y/SdI9aga2IlkGOthiSYdK2r7cvgDM2q7cDHq3pKf2LiS9Hdi9Yjw1Lei9+BdXApvZvhqY9eO90+wH5Z1uwNWS3i7pAeX2NuCaMkw2q3tH6QEM9m90m6BeTzeudxpdd641uwHHSHorXbf2oaWtRadLOgb4Zrl+DnCapDWBa+uFVcVPgaPKKrHb6P5GbHvtumFV8SJgf+A7dM/DGaVtHvD8inGtUCaBY4UkbQicSNcD2qvFJaBwZ82X59DtjO79oX+rxedD0iV0u+WXtvjzzxVJAGNk9UtH0g0s//PfHbi9tLX6Ti8KSccBu9ie1UMcw1B2/r4NeDhwz1677acO/KJZIkNA42X1C2B7rdoxzDZlt+vBwMPoEuI84MZGk+EVwCmSfsDyO+WbWwYKfBX4b7rXjFcDewJXVY1oijIJPEbf6pfX2P5d/42uDEJzJO0m6T/LreXE+ClgD+AiYA3gX+gSQot+C5xElwjX6ru16D6lCupttk+1vRfw+NpBTUV6AIPtCLx9TNsuE7TNaZIOBB5D9y4HYF9J29ner2JY1di+WNI823cAh0v6Se2YarD9vtoxzCK9FWBXSHoGcDmwScV4piwJYAxJ/0b3Tv9BkvrrmqwF/LhOVFXtCmzVG+uVdARwDtBiAriplAc5V9JH6YZB1qwcUxWjPO49Az4gaR3gzXQ9wrWBN9YNaWqSAMb7GvAD4MMs/yJ3Q1nv3aJ1gd7Pvk7NQCp7Kd2w6Wvp/sA3pVsV1KKRHfeeTmWt/0Lbx9CVBXlK5ZBWSlYBTaJUPNyObuXLj22fXTmkoZO0B3AgXfkDAf8IvMP2N6oGNmTlD/0I2y+pHctsIGmJ7W0knddbGSfpVNtPrh3bsEk62fZIvfD3pAcwgKR3023i+HZpOlzSN21/oGJYQ2f765JOoZsHEPB22/9XN6rhs32HpPmS7t5/QE7DRnbcewb8RNKn6HpEN/YaR+ENY3oAA0j6FfBo2zeX6zWAs20/rG5kwydpN7p3/gCn2m7yQBhJnwe2Bo5m+T/05pY+ltVgp9MNg/XGvd9n++iqgVUg6eQJmj0K8yHpAQx2Kd3k1s3l+h7A/1aLppIJVgG9XtITbb+jYli1XF5uq9HukkcAypg3jOC493Qb1eEfSA9gIEnfoXvhO4FuDmBHuq3/V0I7R0OWlVD9q4DmAee0siN6IpLWonuH99fasdRSVgG9ivHnAexVK6Zaygqg/enrJQMH2J71R2SmBzDYUeXWc0qlOGaDrAICJG1JV/J5/XL9Z+Blti+oGlgd36UbAjqRdg+D7zmM7ljMXuG3lwKHAxMdIDSrpAcQk8oqoGXKpq9/t31yud4e+JDtJ1YNrAJJ59reqnYcs8FEz8WoPD/pAYyRYnDLyyqg5azZe/EHsH1KKQXdomMk7Wr72NqBzAJ/K7vjzwCQtC3wt8oxTUl6AGNI2sj2FZIeMNHnS02gZkh6NvCj3nimpHWB7W1/p25kwyfpKOBslp389RK606CeVS+qOkq12DXpCsE1fR6ApEcBX2bZ8Og1dOeHnzf4q2aHJIAJlInO42w/rXYstQ3o3p5j+9G1YqpF0nrA++g2B0J3SNB7bbd2GEz0kfRA27+VtDaA7et7bbVjW5EMAU2gbPq5SdI6ozCTP8Mmqhjb6u/N08au/pL0PJadEBZt+hawte3r+9r+B9imUjxT1uof8lTcDCyVdALLb/ppYvlnn8WSPg58mm5O5HW0eTYywDsY/2I/UVuTJJ1te+vacQyLpIfSFcNbR1L/ip+16SuQN5slAQz2/XJr3euAd9Ntcwc4HnhXvXCGT9IudFVRN5Z0UN+n1qY7JS2All78i83piuGtC/xTX/sNdHskZr3MAQxQVnfcXOq+9+YF7mH7prqRxbCVSb6tgAOA9/R96gbgZNvXVAmsIkl7Aafbvqh2LLVJeoLtM2vHsSpyIthgJ9Gd+tSzBt2ml+ZJ2rt2DMNk+xe2jwAeUj5+DTgPOKPFF/9iAfB5Sf8r6UhJr5M069e9TydJr5K00PaZ6hwm6TpJ55VKwrNeEsBg9+zf6l/u36tiPLOJagcwTJI+J+nhtm8r2/5/Qbfs75yyUa45tt9Tip1tSVci5a20Nze0L13NMOiOCn0U8CDgTcAnK8W0UpIABruxP4tL2oYR2dwxnSQ9cILm44ceSF1P6iv38ArgN7YfQbfK4231wqpH0rvKgfDHAw8B3kJ75aBvt90ri/1M4Mu2/2L7REbkpLhMAg/2BuCbki4v1xsBL6gYTy3foiuB3G8klrhNo/76/ztSVv3Y/j+pqc5Qv3+mmwD/Pl3xs5/2Sqc35O+SNqLb+LUD8MG+z60x8ZfMLkkAA9g+qyzz2pxuyOPXfdl+zpsLS9ym0bWl/v0fgW2BVwJIWp0R+UOfbra3LlVRt6NLil+Q9Cfb263gS+eS9wCLgXnA0b1eoqQnA5fUDGyqkgAGKBt8fmj7fEnvAt4n6QOjcMrPNBn5JW7T6F+Bg4D7AW/oq4W0A40uFS6VUZ8EPBlYBPyBrjpoM2wfU0rGrDVmMcBiRmS0IMtAB+iddSppO7oD4v8TeKftx1UObahGeYlbzBxJ36crhXE6cFZLveOJSHoi489G+HK1gKYoCWCAXr0bSR8Gltr+Wos1cHLwB0g6mAkqw/Y0uDscAEl3BzYrlxe2mgQkfQV4MHAuy85G8Cj8XmQIaLA/ljNgnwZ8RNI9aHPVVA7+6Lr00aeMc3+ZbhmkgE0l7Wn7tKqB1bEI2MIj+G46PYABJN0L2Jnu3f9FZbb/EbabWgI5KgdbxHBJWgK8yPaF5Xoz4Ou2W1odBoCkbwKvt31F7VhWVnoAA9i+SdKVdKscLqJb8tbitvcc/FGU4bC3A1vQtxKqbIhqzd16L/4Atn8j6W41A6poA+CXkn5Odz4CALZ3qxfS1KQHMICk/em6dpvb3kzS/YFv2t62cmhD1Xfwx63l1vLBH8fTFcV7C/BqYE/gKttvrxpYBZIOo5sX6R2O82JgdduvqBdVHWU4bBzbpw47lpWVBDCApHOBRwNn9yZ+eyuD6kYWtUhaYnub/t8DSafanvAFYC4rc2L70PWQRbci6DO2b5n0C+coSfelOzYV4Oe2r6wZz1RlCGiwW21bkuHO6qDNUbfV9cXAA22/X9KmwEa2f145tBp6q1yukPQM4HLaK38AQHmh/3i5NU3S84H/AE6hS4YHS3qr7f+pGtgUpAcwgKS3AAvpdjl+GNgL+Jrtg6sGNmSSPgv8HXiq7YeVYxGPt/2YFXzpnFN2A58ObAocTLcr+n22j64a2BBJWsrkS2Kb6yFL+gWwY+9df5krOtH2o+pGtmLpAQxg+z8l7QhcT7cr9j22T6gcVg2PK9v+zwGwfU1Z/90c28eUu9cBT6kZS0XPLB/3KR/75wBaPStjtTFDPn9hRJaMJwEMIGld4FrgSLrqj62eDXxbOQynNxQ2n65H0BxJRwD79g6BL72hj7W0Kc727wAkbTtmQcR+kn5Md2hOa34o6Tjg6+X6BcBIrJpLAhijvLs9BHgWXUGn1YAHSDoKeLXtWyf7+jnoIOAoYENJHwSeS2NHQvZ5ZO/FH+7sDTW1M7zPmpK2s30G3FkKocl5MttvlfQcukKBAg6xfVTlsKYkcwBjSDqAblv3q23fUNrWojsU/Xe2310zvhpKZdAd6H65T7L9q8ohVVHGerfvFf6StD5wajkboCnlfIzDgHVK07XAXg0VS5wTkgDGkHQ+8NixZ/9KujddzfMt60RWTxnq2JTlawE194cu6WXAO+jOQwB4HvBB218Z/FVzm6S16V5HmhsilXSG7e3KXpn+F9KR2SuTBDDGZGv9JS1t7d2epPcDLwf+l2W/5G509yuStgB6P/uPbP+yZjy1lH0Az2F8kcAW5wBGVuYAxnN5xzvRUU8tTn4+H3hwg3Mfg9yN8g6v3G/Vd+lWQy2hr/xBiyQ9GLjM9i2StgceSXc85LWTf2V9SQDjrUP3Sz1RAmixu3Q+3aEwI7GzcSZJ2peuNPa36H4//kvSIa3tDSk2sb1z7SBmiW8BiyQ9BDgUOBr4GrBr1aimIENAMSlJi+je7Z3PiBW6mm6SzgOeYPvGcr0mcGajm58OAQ62vbR2LLVJOrvslXkrcLPtg0fl7JD0AMaQNPYA9OU0OPl5BPARYCltDoH1E8ufiXAHE/cUW7Ad8HJJv6V7Y9Cb+GwuGdLtldmDrjhg7/jUkRgeTAIY72OTfM4smwBsxZ9tH1Q7iFnicOBnZU8IdHtFDq0YT0271A5gFnkFXXXYD9r+raQHAv9VOaYpyRBQTErSx+ne4R3N8kNArfWEgDt7iHdWwLR9TuWQhkrS2ravL3sgxrF99bBjmk16S6Ztn1c7lqlIApiEpC0Zf/jHrD/oeTpJOnmC5qaWgQ56setp6UVP0jG2n1mGfszyQ2C2/aBKoVUj6RRgN7oRlXOBq+g2CL6pZlxTkQQwQDkQZnu6BHAsXZf3DNvPrRlXDN8EL3a9P5reuHeLL3pfoTsD4HTbv64dT029CV9J/0L37n//UTk7JHMAgz0XeBRwju1XlAMfvlg5pqGT9J6J2lva8GP7gbVjmIUOpxsKO1jSg4Bz6JLBJ+uGVcXq5czw5wP/XjuYlZEEMNjfbP9d0u1lu/uVQHPv9IAb++7fk64ccJO1gGIZ2z+SdCrdKVhPoZsE3RJoMQEcABwH/Nj2WSUhjsT54RkCGkDSZ4B3Ai8E3gz8FTi3xTNP+5USAEfbfnrtWGaD3hrw2nEMm6ST6Kp/nkl3SM4Zo3IMYiyTBDAFkhYAa4/KzP5MKqscfm57Ye1Yoh5JnwC2oVsZ9mO6+YAzbf+tamAVSNoM+CxwX9tbSnoksJvtD1QObYVG4tSaGiQ9W9I6ALYvBX4v6Vl1oxo+SUslnVduFwAX0mY3H0l7SUriA2y/0fY/As+mOwHrcLqS0C36Al2V2NsAyhvFF1aNaIoyBzDY/v2HOti+tqwM+k7FmGp4Zt/924E/2b69VjCVLQBeIukBdPWiTqeb+Dy3alQVSHot8CS6XsDv6M4GOL1qUPXcy/bPpeU2hY/E30gSwGAT9Y5afL42Ai7oOxzn3pIebvtnleMaOtvvAZC0Bl1RuLcC/w+YVzOuStYAPg4safgNQc+fS0XQ3rGpzwWuqBvS1GQOYABJh9F1aT9N9x/7OmA92y+vGdewlcPgt3b5RZG0GrC40YnPd9Ed+3dvumWPZ9D1AEbijz1mRln1cwjwROAa4LfAS8rQ8ayWBDBAqfT4buBpdBt+jgc+0KsE2QpJ59reakzbSGxymW6Szqbr2n8fOJXuhLib60YVs0V5zVit11seBUkAK1D2APzd9l9rx1KDpG8Dp9CtcgB4DfAU281NiMOd50NvV27Pp5sT2a5uVFFTOSficOAGugnhrYH9bB9fNbApyCqgASQ9ogx/LAUukLSk1AZqzavpurZ/LLfHAXtXjaiS8v//Erqyvy8ALgN+VDWomA32sn09sBOwIV110APrhjQ1LU5qTtXngTfZPhmgHPXWG+drRtncMxJL2obgI3Tr3Q8CzrJ9W+V4YnboLf/ZFTjc9i80ZknQbJUewGBr9l78AWyfQrfzsSmSNpF0lKQrJf1J0rckbVI7rhpsPwP4BHA9sLmkkTj0I2bcEknH0yWA48ow4UgcnpQ5gAHKoR9nA18pTS8BFrU29i3pBLrzTfufhxfb3rFeVHVIejLwZeBSund9mwJ72j6tZlxRV1kZtxVwSdkvdB9g41GoHJAEMEApefA++g7/AN5r+5qqgQ3ZgFVA49paIGkJ8CLbF5brzYCv296mbmQRqyZzAAOUF/rX145jFvizpJcAXy/Xe9Bt/W/R3Xov/gC2f5NhoJjIqBQJTA9gDEnfY9mBH+PY3m2I4VQn6R+ATwFPoHtefgLsa/t3VQOroGwONMuGw14MrN56hdgYXUkAY5Rx3oFsnzqsWGJ2KaWw92H5YcHP2L5l0i+MOU3SXnQ7wkfiDIB+SQAxIUkHM3lPKMNjEYCkA+jeFIxckcAkgJUg6b2231s7jmHmmf9aAAAKhklEQVSQtGe5uy3ducj/Xa6fR1cA7I1VAqtA0lImT4bNlcWI8fqKBL6FbhXQrC8SmEnglbOkdgDDYvsIAEkvpyv9cFu5/hxdXaSW9Epi71M+9s8B3DT8cGI2maBI4FsYkdLY6QHEpCRdCDzB9tXlej26Imib141s+CT92Pa2K2qLtoxykcD0AAaQNJ+uO7eAvufJ9l61YqrkQOAcSb1d0U8G3lsvnKrWlLSd7TMAJD2RBneHx/Jsb91XJHBH4AuSRqJIYHoAA0j6CV03bglwR6/d9reqBVWJpPvRFYED+Jnt/6sZTy2StqE7+Wqd0nQtXSGws+tFFbWVIoFPontztAj4A90k8HuqBjYFSQADtLrbNVaslAiX7etqxxL1Sfo+3ZLg0xmxIoFJAANI+gDwE9vH1o5lthmVXY7TrewDeA7jhwUPqBVTzA6S7g5sVi4vHJUkkAQwgKQb6MZ3bwV6/5m2vXa9qKImST8ErmP8sODHqgUV1Y1ykcAkgJjUKO9ynG6Szrfd4qFAMYlRLhKYVUCTkLQb8I/l8hTbx9SMp5IFwEskjdwuxxnwE0mPsL20diAxq4xskcD0AAaQdCDwGOCrpWkPuh2w+9WLqp5R3OU43ST9EngI8FvgFrruvrMTuG2jXCQwCWAASecBW9n+e7meB5zT2h/7BLscz6DrAVxRNbAKSi9onBYro8Yyo1wkMAlggJIAtu/bAbs+3TBQawlgZHc5ThdJa9u+vvwOjNP7HYkYNZkDGOzDLNsBK7q5gHfUDWn4RnmX4zT6Gl09oCV0Xf3+A78NPKhGUFHXXCgSmB7AJCRtRDcPIBrdATvKuxynm6SvUDb82P517Xiirr4hwQmLBI7C/pAkgDEkPdT2ryVNuNGptW3/o7zLcbpJeipdT+hJdO/6z6FLBp+sGlhUNcpFApMAxpB0iO29+4qf9bPtpw49qMpGdZfjTCiLAR4DPAV4NfA32w+tG1XUJOlc4LVjigR+ZhRKySQBDCDpnmMnOydqm+tGeZfjdJN0Et3u8DPpekRn2L6yblRR2ygXCUwCGGCiejct1sAZ5V2O003SJ4Bt6PYA/JhuaOxM23+rGljMCqNYJDCrgMYopY83BtaQ9GiWrfhYG7hXtcDqGdldjtOtdwympHsDrwAOB+4H3KNmXFHX2CKBUveSMQqTwEkA4z0deDmwCfAxliWA64F3VoqppsWSDmX5FQ7NHI3ZT9Jr6SaAtwF+R9ftH4mj/2JGfZdlRQJn/eavfhkCGkDSc1o8/GWsUd7lON0kvZXu519i+/ba8cTsMMpFApMABpD0IeCjtq8t1+sBb7b9rrqRRcRsIukQ4OBRLBKYBDCApHNsP3pMWzOTwHNhl2PEMIxykcDMAQw2T9I9ekMdpRpmS5N9zywfJ9zlOPxwImatXWoHsKrSAxhA0tuA3ehWehjYCzja9kerBjZko7zLMWImzYUigekBDGD7o6Ui6NPounTvt31c5bBqWFPSdmN2Oa5ZOaaI2WDkiwSmBzCJUuxpoe0TJd0LmGf7htpxDdMo73KMGIZRLhKYBDCApFcBewPr236wpIXA52zvUDm0KkZxl2PEMIxykcAkgAFKgafH0pWBfnRpW2r7EXUjG66xuxx77aOwyzFiWEa1SGDmAAa7xfatvW3dklZnkmWRc9jI7nKMGIYJigQ+ZlSKBCYBDHaqpHfS1QTaEXgN8L3KMdWwie2dawcRMYudR1ceZEu6N0vXShqJIoEZAhpA0mrAK4Gd6Gb3jwO+6MaesFHe5RgxTH1FAt8C3M/2rN83lAQQkxrlXY4RwzBBkcDeiqAfVQ1sCjIENICkbYH3Ag+ge556L3yzfm3vNBvZXY4RQ7IG8HFGsEhgegADSPo18Ea6yc87eu22/1ItqCGaC7scI2Jy6QEMdp3tH9QOoqKR3+UYEZNLD2AASQcC84Bv07f8sbUdsKO8yzEiJpcEMICkkydotu2nDj2YikZ5l2NETC4JIFZoVHc5RsTkMgcwQEogdEZ5l2NETG612gHMYt8FdgduB27su7XmPOBWul2OjwS2LIfjRMSIyxDQAKN80PNMGMVdjhExuQwBDfYTSY9ovQTCBLscD6MbCoqIEZcewAApgdCR9Fa6ZaAjt8sxIiaXBDBAOQ1sHNu/G3YsEREzIQlgEpIeRTf8Ad3a91/UjCciYjplFdAAkvYFvgpsWG7/Jel1daOKiJg+6QEMIOk84Am2byzXawJntjYHEBFzV3oAg4m+KqDlvgY8NiJi5GQZ6GCHAz+TdFS5fhZwaMV4IiKmVYaAJiFpa7pCaAJOs31O5ZAiIqZNEsAYkh4DbDD2LABJuwF/tL2kTmQREdMrcwDj/Qfwqwnaf1k+FxExJyQBjHcf25eObbR9MXCf4YcTETEzkgDGm6zS5ZpDiyIiYoYlAYx3oqQPSlpuyaek9wE/qhRTRMS0yyTwGGXD1xeBxwLnluZHAYuBf7H911qxRURMpySACZR3/08C1ilNF9i+pGJIERHTLglgAElLbG9TO46IiJmSOYDBflr2BEREzEnpAQxQDoTZHLiU7izgJg+EiYi5KwlggBwIExFzXYaABigv9JsCTy33byLPV0TMIekBDCBpf2ARsLntzSTdH/im7W0rhxYRMS3yjnawZwO70Y3/Y/tyYK2qEUVETKMkgMFuddc9Mty5QSwiYs5IAhjsSEmfB9aV9CrgROALlWOKiJg2mQOYhKQdgZ3oloAeZ/uEyiFFREybHAk5ud/Qrf0/UdK9JK1l+4baQUVETIcMAQ1Qhn3+B/h8adoY+E69iCIiplcSwGD7ANsC1wPYvgjYsGpEERHTKAlgsFts39q7kLQ6ZUVQRMRckAQw2KmS3gmsUSaDvwl8r3JMERHTJquABpC0GvBK+lYBAV90nrCImCOSACYg6dHAg+kOgvlV7XgiImZChoDGkPQe4L+B5wDfL6uBIiLmnPQAxpB0AfAY2zdJug/wQ9s5GCYi5pz0AMa72fZNALb/Qp6jiJij0gMYQ9K1wGm9S7rD4XvX2N6tRlwREdMtCWAMSU+e7PO2Tx1WLBERMym1gMb7JTDf9i/7GyU9HLiyTkgREdMv49vjHQzMn6B9E+CTQ44lImLGZAhoDEkX2H74gM+db3vLYccUETET0gMY726r+LmIiJGSBDDeRZJ2HdsoaRfgkgrxRETMiAwBjSFpM+AY4CfAktK8CHgC8Ezbv6kVW0TEdEoCmICkewAvAnrj/RcAX7N9c72oIiKmVxLAGJKOt71T7TgiImZa5gDGm2gJaETEnJONYOOtI+mfB33S9reHGUxExExJAhhvHeCZdHWAxjKQBBARc0LmAMaQdLbtrWvHEREx0zIHMN5E7/wjIuacJIDxXjpRo6R5kl487GAiImZKEsB4v5f0DkmfkrSTOq+j2wX8/NrBRURMl8wBjCHpu8A1wJnADsB6wN2BfW2fWzO2iIjplAQwhqSlth9R7s8D/gz8g+0b6kYWETG9MgQ03m29O7bvAH6bF/+ImIvSAxhD0h3Ajb1LYA3gpnLftteuFVtExHRKAoiIaFSGgCIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolH/H3Gkl3xm1H6hAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "df_symbol_id_counts.plot(kind = \"bar\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "\n", + "Plot showing symbols found which have returned values containing **\"=, ;, :\"** as separator or assignment symbols" + ] + }, + { + "cell_type": "code", + "execution_count": 206, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 206, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYAAAAGoCAYAAABPODLkAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3Xvc7eWc//HXuxwmKUU701SUhMmhg12ijAal0uRMOYXoZ4QwzMQM5dAMxmHUCFGJQRJNSaRSkUK788GhpkKKolKKUt6/P65r7b32ve+991r33vv+rmt/38/H437sta611r0/92l9vtfpc8k2ERHRP6t0HUBERHQjCSAioqeSACIieioJICKip5IAIiJ6KgkgIqKnkgAiInoqCSAioqeSACIieupeXQewJOuss4432mijrsOIiGjKeeed91vbc5b2vIlOABtttBHz5s3rOoyIiKZI+vkoz8sQUERETyUBRET0VBJARERPJQFERPRUEkBERE8lAURE9FQSQERETyUBRET0VBJARERPTfRO4GjLRvt/Y4V+/mve/8wV+vkj+iY9gIiInkoCiIjoqSSAiIieSgKIiOipJICIiJ5KAoiI6KkkgIiInlpqApD0V5J+JOkiSZdJendt31jSDyVdIenLku5T2+9b719ZH99o6HO9vbb/VNIzVtQXFRERSzdKD+BO4Km2Nwe2AHaWtC3wAeCjtjcFbgb2rs/fG7jZ9sOBj9bnIWkzYA/g0cDOwKGSVl2eX0xERIxuqQnAxR/q3XvXDwNPBY6t7UcBz663n1XvUx9/miTV9qNt32n7auBKYJvl8lVERMTYRpoDkLSqpAuBG4BTgP8DbrF9d33KtcD69fb6wC8B6uO/Bx403D7NayIiYpaNlABs32N7C2ADylX73073tPqvFvPY4toXImkfSfMkzbvxxhtHCS8iImZgrFVAtm8BzgC2BdaSNCgmtwFwXb19LbAhQH38AcBNw+3TvGb4/zjM9lzbc+fMmTNOeBERMYZRVgHNkbRWvb0a8HTgx8DpwPPr0/YCjq+3T6j3qY9/x7Zr+x51ldDGwKbAj5bXFxIREeMZpRz0esBRdcXOKsAxtk+UdDlwtKT3ARcAh9fnHw58XtKVlCv/PQBsXybpGOBy4G5gX9v3LN8vJyIiRrXUBGD7YmDLadqvYppVPLb/BLxgMZ/rIOCg8cOMiIjlLTuBIyJ6KgkgIqKnkgAiInoqCSAioqeSACIieioJICKip5IAIiJ6KgkgIqKnkgAiInoqCSAioqeSACIieioJICKip5IAIiJ6KgkgIqKnkgAiInoqCSAioqeSACIieioJICKip5IAIiJ6KgkgIqKnkgAiInoqCSAioqeSACIieioJICKip5aaACRtKOl0ST+WdJmk/Wr7gZJ+JenC+rHr0GveLulKST+V9Iyh9p1r25WS9l8xX1JERIziXiM8527gn2yfL2kN4DxJp9THPmr7Q8NPlrQZsAfwaOBvgFMlPaI+/HFgR+Ba4FxJJ9i+fHl8IRERMZ6lJgDb1wPX19u3SfoxsP4SXvIs4GjbdwJXS7oS2KY+dqXtqwAkHV2fmwQQEdGBseYAJG0EbAn8sDa9XtLFko6QtHZtWx/45dDLrq1ti2uf+n/sI2mepHk33njjOOFFRMQYRk4Aku4PfBV4k+1bgU8AmwBbUHoIHx48dZqXewntCzfYh9mea3vunDlzRg0vIiLGNMocAJLuTXnz/4LtrwHY/s3Q458GTqx3rwU2HHr5BsB19fbi2iMiYpaNsgpIwOHAj21/ZKh9vaGnPQe4tN4+AdhD0n0lbQxsCvwIOBfYVNLGku5DmSg+Yfl8GRERMa5RegDbAS8DLpF0YW17B7CnpC0owzjXAP8PwPZlko6hTO7eDexr+x4ASa8HTgZWBY6wfdly/FoiImIMo6wCOovpx+9PWsJrDgIOmqb9pCW9LiIiZk92AkdE9FQSQERETyUBRET0VBJARERPJQFERPRUEkBERE8lAURE9FQSQERETyUBRET0VBJARERPJQFERPRUEkBERE8lAURE9FQSQERETyUBRET0VBJARERPJQFERPRUEkBERE8lAURE9FQSQERETyUBRET0VBJARERPJQFERPTUUhOApA0lnS7px5Iuk7RfbX+gpFMkXVH/Xbu2S9LBkq6UdLGkrYY+1171+VdI2mvFfVkREbE0o/QA7gb+yfbfAtsC+0raDNgfOM32psBp9T7ALsCm9WMf4BNQEgZwAPAEYBvggEHSiIiI2bfUBGD7etvn19u3AT8G1geeBRxVn3YU8Ox6+1nA51z8AFhL0nrAM4BTbN9k+2bgFGDn5frVRETEyMaaA5C0EbAl8EPgwbavh5IkgHXr09YHfjn0smtr2+LaIyKiAyMnAEn3B74KvMn2rUt66jRtXkL71P9nH0nzJM278cYbRw0vIiLGNFICkHRvypv/F2x/rTb/pg7tUP+9obZfC2w49PINgOuW0L4Q24fZnmt77pw5c8b5WiIiYgyjrAIScDjwY9sfGXroBGCwkmcv4Pih9pfX1UDbAr+vQ0QnAztJWrtO/u5U2yIiogP3GuE52wEvAy6RdGFtewfwfuAYSXsDvwBeUB87CdgVuBK4A3glgO2bJL0XOLc+7z22b1ouX0VERIxtqQnA9llMP34P8LRpnm9g38V8riOAI8YJMCIiVozsBI6I6KkkgIiInkoCiIjoqSSAiIieSgKIiOipJICIiJ5KAoiI6KkkgIiInhplJ3BExAq30f7fWGGf+5r3P3OFfe6WpQcQEdFTSQARET2VBBAR0VNJABERPZUEEBHRU0kAERE9lQQQEdFTSQARET2VBBAR0VNJABERPZUEEBHRU0kAERE9lQQQEdFTSQARET2VBBAR0VNLTQCSjpB0g6RLh9oOlPQrSRfWj12HHnu7pCsl/VTSM4bad65tV0raf/l/KRERMY5RegCfBXaepv2jtreoHycBSNoM2AN4dH3NoZJWlbQq8HFgF2AzYM/63IiI6MhSTwSz/V1JG434+Z4FHG37TuBqSVcC29THrrR9FYCko+tzLx874oiIWC6WZQ7g9ZIurkNEa9e29YFfDj3n2tq2uPZFSNpH0jxJ82688cZlCC8iIpZkpgngE8AmwBbA9cCHa7umea6X0L5oo32Y7bm2586ZM2eG4UVExNLM6FB4278Z3Jb0aeDEevdaYMOhp24AXFdvL649IiI6MKMegKT1hu4+BxisEDoB2EPSfSVtDGwK/Ag4F9hU0saS7kOZKD5h5mFHRMSyWmoPQNKXgB2AdSRdCxwA7CBpC8owzjXA/wOwfZmkYyiTu3cD+9q+p36e1wMnA6sCR9i+bLl/NRERMbJRVgHtOU3z4Ut4/kHAQdO0nwScNFZ0ERGxwmQncERETyUBRET0VBJARERPJQFERPRUEkBERE8lAURE9FQSQERETyUBRET0VBJARERPJQFERPRUEkBERE8lAURE9FQSQERETyUBRET0VBJARERPJQFERPRUEkBERE8lAURE9FQSQERETyUBRET0VBJARERPJQFERPRUEkBERE8tNQFIOkLSDZIuHWp7oKRTJF1R/127tkvSwZKulHSxpK2GXrNXff4VkvZaMV9ORESMapQewGeBnae07Q+cZntT4LR6H2AXYNP6sQ/wCSgJAzgAeAKwDXDAIGlEREQ3lpoAbH8XuGlK87OAo+rto4BnD7V/zsUPgLUkrQc8AzjF9k22bwZOYdGkEhERs2imcwAPtn09QP133dq+PvDLoeddW9sW1x4RER1Z3pPAmqbNS2hf9BNI+0iaJ2nejTfeuFyDi4iIBWaaAH5Th3ao/95Q268FNhx63gbAdUtoX4Ttw2zPtT13zpw5MwwvIiKWZqYJ4ARgsJJnL+D4ofaX19VA2wK/r0NEJwM7SVq7Tv7uVNsiIqIj91raEyR9CdgBWEfStZTVPO8HjpG0N/AL4AX16ScBuwJXAncArwSwfZOk9wLn1ue9x/bUieWIiJhFS00AtvdczENPm+a5BvZdzOc5AjhirOgiImKFyU7giIieSgKIiOipJICIiJ5KAoiI6KkkgIiInkoCiIjoqSSAiIieSgKIiOipJICIiJ5KAoiI6KkkgIiInkoCiIjoqSSAiIieSgKIiOipJICIiJ5KAoiI6KkkgIiInkoCiIjoqSSAiIieSgKIiOipJICIiJ5KAoiI6KkkgIiInkoCiIjoqWVKAJKukXSJpAslzattD5R0iqQr6r9r13ZJOljSlZIulrTV8vgCIiJiZpZHD+DvbW9he269vz9wmu1NgdPqfYBdgE3rxz7AJ5bD/x0RETO0IoaAngUcVW8fBTx7qP1zLn4ArCVpvRXw/0dExAiWNQEY+Lak8yTtU9sebPt6gPrvurV9feCXQ6+9trYtRNI+kuZJmnfjjTcuY3gREbE491rG129n+zpJ6wKnSPrJEp6radq8SIN9GHAYwNy5cxd5PCIilo9l6gHYvq7+ewNwHLAN8JvB0E7994b69GuBDYdevgFw3bL8/xERMXMzTgCSVpe0xuA2sBNwKXACsFd92l7A8fX2CcDL62qgbYHfD4aKIiJi9i3LENCDgeMkDT7PF21/S9K5wDGS9gZ+AbygPv8kYFfgSuAO4JXL8H9HRMQymnECsH0VsPk07b8DnjZNu4F9Z/r/RUTE8pWdwBERPZUEEBHRU0kAERE9lQQQEdFTSQARET2VBBAR0VPLWgoiYqWx0f7fWKGf/5r3P3OFfv6IcaUHEBHRU0kAERE9lQQQEdFTSQARET2VBBAR0VNJABERPZUEEBHRU0kAERE9lY1gERHLqNVNhOkBRET0VBJARERPJQFERPRUEkBERE8lAURE9FQSQERETyUBRET01KwnAEk7S/qppCsl7T/b/39ERBSzmgAkrQp8HNgF2AzYU9JmsxlDREQUs90D2Aa40vZVtu8CjgaeNcsxREQEs18KYn3gl0P3rwWesLw+eavbsSOWh/z+x7hke/b+M+kFwDNsv7refxmwje03DD1nH2CfeveRwE9XYEjrAL9dgZ9/RUv83Ur83Wo5/hUd+0Ntz1nak2a7B3AtsOHQ/Q2A64afYPsw4LDZCEbSPNtzZ+P/WhESf7cSf7dajn9SYp/tOYBzgU0lbSzpPsAewAmzHENERDDLPQDbd0t6PXAysCpwhO3LZjOGiIgoZv08ANsnASfN9v+7GLMy1LQCJf5uJf5utRz/RMQ+q5PAERExOVIKIiKip5IAIiJ6KgkgIqKnepkAJK0m6ZFdxzFTktaX9CRJfzf46DqmUUl6qKSn19urSVqj65iiDXUj6VLbJpWKl0p6V73/EEnbdBlT7xKApH8ALgS+Ve9vIamZvQiSPgB8H/g34G31462dBjUiSa8BjgU+VZs2AP63u4jGI+nBkg6X9M16fzNJe3cd16hajx94+4htk+pQ4InAnvX+bZTimJ2Z9WWgE+BASlG6MwBsXyhpo+7CGduzgUfavrPrQGZgX8r3/ocAtq+QtG63IY3ls8CRwL/W+z8Dvgwc3lVAY/osDcYvaRdgV2B9SQcPPbQmcHc3Uc3IE2xvJekCANs31w2xneldDwC42/bvuw5iGVwF3LvrIGbozloFFgBJ9wJaWoe8ju1jgL9A2dgI3NNtSGNpNf7rgHnAn4Dzhj5OAJ7RYVzj+nMtiW8ASXOoP4uu9LEHcKmkFwOrStoUeCNwdscxjeMO4EJJpwHzewG239hdSCM7U9I7gNUk7Qi8Dvh6xzGN43ZJD2LBH/C2QEsXE03Gb/si4CJJX7T9567jWQYHA8cB60o6CHg+ZSi3M73bCCbpfpQu8E6AKGUp3mv7T50GNiJJe03Xbvuo2Y5lXJJWAfZm4e/9Z9zIL6GkrYBDgMcAlwJzgOfbvrjTwEa0EsS/HWUI96GUi1cBtv2wLuMah6RHAU+jxH6a7R93Gk8jf3sxpI4bPqLe/WnjV0VNqcNWj6T8ATf3vW85fkk/Ad5MGf6ZP3Rl+3edBTUGSQ+cpvm2Ln8GvUkAkr7OEsabbe8+i+HMmKQdgKOAayh/xBsCe9n+bodhLZGkY2y/UNIlTPMzsP24DsIam6TnTtP8e+AS2zfMdjzjquPPzwQ2Ymj41/ZHuoppHJJ+aHu5HSA12yRdQ/l7vZnyt7sWcD1wA/Aa2+fNdkx9mgP4UNcBLCcfBnay/VMASY8AvgQ8vtOolmy/+u9unUax7PamLOM7vd7fAfgB8AhJ77H9+a4CG9HXKROpl9Dx5OMMnS7pP4GvsfD81/ndhTSWbwHH2T4ZQNJOwM7AMZQlorOe3HqTAGyfCSBpN+Ak2y3+AQDce/DmD2D7Z5ImelWQ7evrzc1sf3P4MUmvBT45+1HNyF+Av7X9Gyjr6oFPUP5wvwtMegLYoJXe1mIM3iCHD1Ix8NQOYpmJubZfO7hj+9uS/t32WyTdt4uAepMAhuwBfEzSV4Eju56EmYF5kg5nwZvNSyhjoi14p6Q7bX8HQNK/UK6iW0kAGw3e/KsbgEfYvklSC2Pp35S0k+1vdx3ITNj++65jWEY31d/5o+v9FwE316G5Ti5IezMHMEzSmpTdeK+kXEEcCXzJ9m2dBjaCeqWwL7A9ZRzxu8ChLWwMk7QOcCJl9/LOwKOAPVqZiJR0KPAQ4Cu16XmUY07fBpw46W9Qkp4D/A9l/8+fWbCKZs1OAxtR7XH9O/A3tneRtBnwRNsTvZFtoP7+H8CCv92zgHdT5pEeYvvKWY+pjwkA5v8wXgq8Cfgx8HDgYNuHdBrYSq7u/D2V0mt5VStLQKHUcqG86W/Hgj/gr7byNUi6irKT/JJWYh5WS1gcCfyr7c3riqYLbD+249Ca1bsEIGl3ypX/JpRhlKNs31D3B/zY9kM7DXAxWl5JI+k2Fo75PpQt/KahK9DWSToZ2KXV+S9J59reWtIFtresbRfa3qLr2EZRd/7+M/Bo4K8G7bY7m8Po4xzA84GPTl02afsOSa/qKKZRNLuSxvZKUfGz7pw9BPhbShJbFbi9oQR2PXBGvZIeXkXTxDJQGt3JPOQLlNpLuwGvBfYCbuwyoD7WArp+6pt/rbCJ7dO6CWnphlbSvM72z4c/KCUVmiBpd0kfqh+tJbP/pswdXQGsBryakhBacTVwGiV5rTH00Yq3UOr/bCLp+8DngDd0G9JYHlTnK/5s+0zbrwK27TKgPg4BnW97qyltF0/yEMqwluOX9H5ga8qVEJQ30/Ns799dVKOTNM/23OHvt6SzbT+p69j6ovGdzD+wvW0dijuYUuTuWNubdBVTb4aAJP0j5Up5E0nDtU/WoNTXn2hD8T+sxfirXYEtBmPQko4CLgCaSADAHbUMx4WSPkgZUlm945hGNolj0OOYZif2IyQ1sxMbeJ+kBwD/ROk5rkkpbdGZ3iQA4IvAN4H/YOE3nNts39RNSGNpPf6BtYBBvA/oMpAZeBll2PT1lD/cDSmrgloxcWPQY2p2J3Zd67+p7RMp8xYTsWS4j0NAmwDX2r6z1tV5HPA527d0G9noalXH7SmTYd9vZSu8pD2B91P+gAX8HfB220cv8YUToP4BH2X7pV3HMlOSzrP9+ClDWGfafkrXsY2i1vN69TQ7sV8NfNf2Y7qMb2kknT5pe0X6OAn8VeAeSQ+nnIS0MeXqugmS3kkpBvcgYB3gSEmd1hQfle0vUSa9vlY/ntjCmz+A7XuAOV2f4LSMBuPl10t6pqQtKcdytmKxO7FZ8LVNsrMl/bekJ0vaavDRZUB9GgIa+Ivtu+t44n/ZPkT1iLZGvBjY0vX8gjqxej7wvk6jGt3WlCt/KNvfWzoQ5hrg+ypnSN8+aGxoGeXEjUGP6XuSTmTBTuzn17bVgRZ68IPFAu8Zauu0llEfE8Cf61DEy4F/qG0TXUxtimsoE3iDA2zuC/xfZ9GMYZpVQG+U9CTbrRzsfV39WIW2lk8CUMefYYLGoMe0L/BcFpRSOMr2sfWxif96Jm34B/o5B7AZZQLsHNtfkrQx8CLb7+84tJFI+l/Km+gplKuHHSklCW6AyT4asq5eGl4FtCplK//EL2EdJmkNyg7mP3QdyzjqKqDXsOh5AJO8AXKxJG0P7Gl7365jGUXtfR3Agh7wmcB73OEZ5b1LAK3TYo6EHPAEHw1ZE8AOg1VLKickndFKApD0GEr5kMHJTr8FXm77su6iGp2ks4HvseiJWl/tLKgxSdqCsn/kRZSNbV9rpX5XrUB8KWUOD8qqss1tT3fQ0OzElAQAkg60fWDXcazsWl4FBPPfQP/V9un1/g7Av7eyEaylujnDVA492oPyxv87ylLWt05q3a7Fme773/XPpI9zANOZ+Hr6LReDG6hDbmdQhrAE/IvtX3cb1VhWH7z5A9g+o05AtuJESbvaPqnrQMb0E0rP5R8GJZMltTR5PfBHSdvbPgvmH3L/xy4D6l0PQNJ2tr+/tLZJI2k929dLmvaqp9YEmmi1Hv13BmOektaiDAn9b7eRjUbScZQVV4MNRy+lnPL07O6iGl2tyro6pRBcM+cB1N+bPSiraL5FOVDlM7Y37jSwMUnanFK/aLAB8mbKed4XL/5VKzimHiaA6WrpLNI2ieqk6cm2n951LDOxmC7w/NK+k07S2pQDPLavTd8FDmxpE2HLJN0feBZlKOiplLH049zICWeSNrZ9tcqBVNi+ddDWVUy9GQKS9ETKFcQcSW8ZemhNSlnfiWf7Hkl3SHpAlysHlsF0Gw9b+h18+tRVVpJewIJ16bEC1VVXXwC+UBcQvIBSFqWJBEDZhLqV7VuH2o4FHt9RPE398S2r+wD3p3zNw2u4b6VsKGnFn4BLJJ3CwpuRJnb555B5kj4CfJwyj/EGGph/GfJ2Fn2zn66tGQ31flcBLh6Ue6gryT5VPyaapEdRCvA9YEpBuzUZKsrXhd4kANtnAmdK+mwL4+VL8I360aI3AO+krOKAcuU28WUsJO1CqWS6vqSDhx5ak3KyWbNaePMHsP0XSRdJeojtX3Qdz5geSSnAtxYLNp8C3EbZl9GZPs4BPAJ4K4tuhmmlJO7qwJ9qbZrBvMB9bd/RbWQrrzp5twVlC/+7hh66DTjd9s2dBDYmlRPvvmf7iq5jmQlJ36GsIPsRC/d+d+8sqDFIeqLtc7qOY1gfE8BFwCdZdDNME0MRkn5AGYv+Q71/f+DbraxFn0rSPrYP6zqOUUi6t+0/S7o38BjgV43UoQdA0nsoE9gPpfz+f4+SEC7sNLARSZq2amnt3U8sSa+hbHi8QpIoRSifB/wceEWX1Xx7MwQ05G7bn+g6iGXwV8MlCGz/QeVA+1ap6wCWRtIngUNsX1a3859DuXh4oKS31iqnE8/2uwAkrUYZengb8F+0swjizLoMelPbp9bf+xZi3w/4bL29J7A58DBgS+BjwJO7Cauf5aC/Lul1ktaT9MDBR9dBjeH24RKykh5Px5tJRlXrLk3VwgqOJw+Ve3gl8DPbj6Ws3vjn7sIaj6R/UzkQ/tvAwylDoc2Ug65X0seyYOJ3faCFPSR3e8HRlbtRzh/5ne1T6fhEuT72AAa1dN421GZKRm7Bm4CvSLqu3l+PUhelBV8Fpk46droMbkR3Dd3ekbrqx/avS4++Gc+lTFp/g1KI7AeDsuKN2BfYBvghQB1SWbfbkEbyF0nrUTZ+PQ04aOix1boJqehdAmht9+BUts+ty8oGB2P/xBN+MPYkL4Mb0S2SdgN+BWxHOZpwcEB5p3/A47C9Va1kuj0lkX1a0m9sb7+Ul06KO23fNUi69fvfwiTmu4B5lOGqEwa9yTqncVWXgfUuAdRxw7cAD7G9j6RNgUcO1UqfaHXj0bdsX6pyEti7Jb2vy4mkEUzsMrgR/T/gYOCvgTcN1S96Gg0tya3VTJ8MPAWYC/ySMhHcijMlvQNYTdKOwOto4EAh2yfWuYs1pqwYm0fHvfc+rgL6MmUFxMttP6ZOiJ3TSpVE1fNcay30/wA+BLzD9hM6Dm2pJnEZXJ9I+galfMX3gHMnvec4Vd0MtjewE6X3ezKlJlAzb2KSnsSiS9A/11k8DX3vlgtJ82zPHa5BI+ki25t3HdsoBnFL+g/gEttfbKWejho9kETSISxhqKGRXdgAqJxp/Ih696etJYGBunBjgy4LqY1L0ueBTYALWbAE3V3+/vRuCAi4q171G0DSJpTqiK34laRPAU8HPiDpvrSzmut4ytXnqQztwWjAvK4DWB7qmPPnKMeKCthQ0l62v9tpYCNSKSW+O+V960LgRkln2n7LEl84OeYCm01Sj6WPPYAdKeUHNqMsh9uOshnjjC7jGlWdw9iZcvV/RV1d8NgWKiJOVw00Zo+k84AX2/5pvf8I4Eu2J30VFrBQ7/fVwIa2DxgMiXYd2ygkfQV4o+3ru45loHc9ANunSDof2JZyFbSf7d92HNbIbN8h6QbKSo4rKMv6Wtna3+qBJMD8Iax/oVw8zF+91EoZEeDegzd/ANs/q7uaW3GvesHzQuBfuw5mBtYBLpf0I4ZGHbosZdG7BFCtT1mSdS/g7yRh+2sdxzQSSQdQupKPBI4E7g38D6UnM+n2A94h6S7K2vomDiQZ8gVKIbtnAq+l7Cm5sdOIxjNP0uEsONDmJbRVjfU9lInfs+py6IfRzsUPwIFdBzBVH4eAjgAeB1wG/KU2e9InIgckXUjZQn7+0CR2M93glkk6z/bjh7/fdQx62ho1k6bOF+1L6T2KsiLoUNstzYE1TdKDKQXtAH7UdS2pPvYAtrW9WddBLIO7bFvSYBK7mTNpayGslwAb236vpA2B9Wz/qOPQRjVYMXO9pGcC19FQKYX6Rv+R+tEcSUcy/XnYrVy8vRD4T+AMSgI+RNLbbB/bVUx9TADnSNrM9uVdBzJDx9RVQGvV2iivAj7dcUyjOpTS63oq8F7gD5TDYbZe0osmyPtqMbh/Ag6h7GSe+MPJJV3CkpexttJ7HN6s+VfAcyhJuBX/Cmw9uOqvc0qnUsqhdKKPQ0B/R9k9+GvKRMxgHLqVP4LBSqb5m2Fsn9JxSCNRPX2q1T0Yraq7UKEM/8DCcwB32H7P7Ee17OrGsFNbmYSXdEktIji4vwpw0XDbbOtjD+AI4GXAJSyYA2iyXdOYAAAYcUlEQVSGpLWAW4BjKFUpWzob+M8qB9gMhq/m0NDPQNJRlFVjt9T7awMfnvQhCNcT8CRtZ3t4scD+kr5PmVxt0abAQ7oOYgzfknQyMCgf/iKg0xVxfUwAv7B9QtdBjKvu4DwMeDalgNQqwEMlHQe81vZdS3r9hDgYOA5YV9JBlLOYJ/5IyCGPG7z5A9i+WdLE78Aesrqk7W2fBfPLErQ0h3QbCw9l/ZqyLLcJtt8m6XmUFXsCDrN9XJcx9XEI6FBKUbKvs/Ba3IleBqpymtMmlDf722rbGpQx9J/bfmeX8Y2qVgZ9GuUP4DTbP+44pJGpnCa3w6CgVy1HcGaXXfhxqJwdcQTwgNp0C/CqCS8kGCtQHxPAkdM0T/wyUEmXAtt4ytm/KkdC/sD2Y7qJbDx12GRDFq4F1MQbkKSXA29nwaTdC4CDbH9+8a+aPJLWpPzttzR82CxJZ9nefpoeTOf7YHqXAFq1pLX+UyeXJpWk9wKvAP6PBX8IbmUSD0DSZpRVTADfaWk1Wd0H8DwWLcbX6hzA/IUFXcfRqt7NAdT6J58AHlzLQT8O2N32+zoObWlcr56nO4KqlYnUFwKbNDJfsTj3pl651dstOR74PWX370qx+aulN/9aePJa23dK2oGyIfVzw/NKsx5T33oAks6kHAf5qaGliJdO+hCKpGsob/TTJQDbnvgjLSV9FfjHrnc/zpSk/SjlrL9K+Tk8hzKRd0ingY2ohd/zxamrx062/fSuY5mpuot/LqUHdjJwAuUwql27iql3PQDgfrZ/pIXPcr27q2BGZXujrmNYDv4DuKDOZ0xEMawx7Q08wfbtAJI+AJxD2RTWgrMlPdb2JV0HMi7b90i6Q9IDGp67+IvtuyU9B/gv24dIuqDLgPqYAH5bu2KDtejPByamPOviSFpiV7eRidSjgA/Q6B4MylX/8DkG9zB9j2xSbQ+8QtLVtLkJ8k/AJZJOAW4fNHZ5oMqY/ixpT0oRwcHRqJ0OI/YxAexLWU//KEm/Aq4GXtptSCP58BIeMwsmJifZb20f3HUQy+BI4Id17wWUPRmHdxjPuHbpOoBl9A0aOoN5Gq+kVJE9yPbVkjamVPLtTO/mAAZqEbVVBmvqY8WT9BHKlecJLDwE1ELvBZjfE5tfTdN2p134UUha0/atdd/CImzfNNsxzZRWniMt16YcatPpkZa9SQCSlnhsnO1mKiRKegyLHkrS2cHSo5J0+jTNE78MdHFvnAOT/gYq6UTbu9WhH7PwsFUTCwgA6sqZoxg60hLYyw0faUnZSNjZkZZ9GgJao+sAlod6IMwOlARwEqVbfxblrNeJZvvvu45hhs5j4TfOwVXTYDnoRL+B2t6t3jyLcgbA92z/pMOQZurDwE6ecqQl0MSRlsADak/s1cCRrkdadhlQbxKA7Xd3HcNy8nxgc+AC26+sB0x8puOYRiLpXdO1T/pGJNsbdx3DcnIkZfjqkHqa1gWUZPCxbsMaWY60XM5W6TqA2SLpmKHbH5jy2MQfqD7kj7b/Atxdt/TfwIRfgQ65fejjHkrvZaMuA+oT298BDgLeSblo2Br4x06DGs88SYdL2qF+fJo2j7T8P0/IkZZ9mgMYrkG/0Pbx4ccmXS1m9w5gD8rBJH8ALrT9yk4Dm4FamuAE28/oOpaZaqkUgaTTKNU/zwG+Rzlbt5lNeZr+SMuPN76zvFO9GQJiCSciLeWxiWL7dfXmJyV9C1iz65UEy+B+tNN7mVYrb/7VxZTx8sdQSkLcIukc23/sNqyRvbYu1pi/YKPuzm5iCGsSy9D0ZggIuJ+kLWtJ3NXq7a0G97sOblSSnqNyLCG2rwF+IenZ3UY1GkmXSLq4flwG/JRG/ngBJL1K0qZdxzFTtt9s++8oJSx+R5kT6KwOzQzsNU3bK2Y7iGXwaUo12T8D1Au3PboMqE9DQNMtQZyvlRUqki60vcWUtiaGsLTgaEIo5Td+Y3viy3AM1DMZtgceShl7/h5lEvXCTgMbkaTXA0+m9AJ+zoIVQd/pNLClqLtnX0z53n9v6KE1gHtaqQ8k6VzbW08Zjl7k73k29WYIqJU3+BFM12tr5ee4HnDZ0IE295f0aNs/7Diukdh+F4Ck1ShF4d4G/BewapdxjWE1yvDJeS0lXuBsSrmWdVh4R/xtlGGtVkxcGZre9AAGJL0A+Jbt2yT9G7AV8N4WdnQCSDqC0m3/OOUX6Q3A2rZf0WVco6iFr7Zy/aVTORR7Xivj6PX3ZTvg/pQllGdRrqAnvpZUdK+u+jkMeBJwM7UMTR3K7USf5gAG3lnf/LcHnkHZWfjJjmMaxxuAu4AvA1+hFMjat9OIRicPXXHU5ayt9F4Angs8CDgV+BplBVPe/GeJpG0lnSvpD5LuknSPpFu7jmtUtq+qw1VzgEfZ3r7LN3/oZwIYVHN8JvAJ28cD9+kwnrHYvt32/pTib0+x/fZBeeIGXCXpjZLuXT/2oxxw34TaU3ka8CNgR0plyrO6japX/hvYk7J2fjXg1bRTihtJ+9W9O3cAH5V0vqSduoypjwngV5I+RdmNd1JdW9zM90HSY+tQyiXAZZLOq7WBWvBaSvf3V/XjCcA+nUY0hvp9fillNcqLgGuBiZ5AXdnYvhJY1fY9to8EWprbe5XtW4GdgHUp1UHf32VALXW/l5cXAjsDH7J9S92a/baOYxrHp4C32D4d5hfIGowrTrS66ajTZW/L6AOUlTMHA+e2WomyYXfUaqAXSvogZQJ19Y5jGsegltSulFpAF2nKyVSzHlDfJoEHJK3LwtU0f9FhOCOTdJHtzZfWNokkbUDpsm9HmcA+C9jP9rWdBjaGlaUccYvqMuIbKIeovBl4AHBo7RVMPElHAusDG1Pqea0KnGG7s2J2vUsAknanLCX7G8ov00OAn9h+dKeBjageRnI+8Pna9FJgru2J3wxWT3L6IgvH/hLbO3YX1egkPYVSdfUaGixHHN2qq962AK6qow8PAtbvcid/HxPARZQJ1FNtbynp74E9bTcxFl0Pkng3C9dDOdD2zZ0GNoLFbGLrdCPMOCSdB7x4ajniLq/g+kTSJSxatuX3wDzgfbZ/N/tRta2PcwB/tv07SatIWsX26VOrg06y+kbfyhmoU/1W0kspNdyhrOho6Y+29XLErfsmZRXfF+v9PSgXQb8HPsuCc3ab0XUxwT4mgFsk3Z9y5fwFSTdQyhJMNElfZwlF62zvPovhzNSrKEv5Pkr5Ws6uba2YJ+lwFgxhvYS2yhG3bjvb2w3dv0TS921vVy8smtP1Jsg+DgGtDvyRsvTzJZSJpC9Mevexjj8vlu0zZyuWvlpMOeJDbd+5xBfGclGHb/cZlA6RtA3wadubt1APS9KrKDvHOz0DYFgfE8Cbga+0tPKkdZIOYcm9l1aHtGIWSdoaOIJSikPArZTNYJcBz7R9zBJe3rlJLCbYxwRwAGUvwE3A0cCxtn/TbVTLRtKBtg/sOo7FkTQo47sd5SzjL9f7L6AUJntzJ4GNaDGTj/PZftwshtN7tRy6bLdUynq+oWKCb6WsAuqsmGDvEsBAPYzhRcDzgGtbKSk7HUn/YPvrXcexNLUk906DtfN1AvXbk16pdaiM9aDm0vAcwB2e8DONWyfppbb/R9Jbpnu8HhIz8SaxmGAfJ4EHbgB+TVmFsm7HsSyTFt78q7+h1HC/qd6/f22baLZ/DiBp6iTk/pK+TznrNVacwW7fNTqNYtk9l7Lg5BvAmcAPbP+py4B6lwAk/SPlyn8OcCzwGtuXdxvV6CTNoXQfN2Lo52e7hdU07wcuGDqc5ynAgd2FM7bVJW1v+ywASU+irVIETbL9qXrzUNs3dhrMMrC9laQ1KPMAOwKflvQb29t3FVPvEgBlAuZNrZziNI3jKZNHp7KgsmkTbB8p6ZuUInAA+9v+dZcxjWlv4IjBkZyUcxlaSLwri7MlXU2ZQ/paC5sfh9Vigk+mXPjMBX7JwieczX5MfZwDkLQq8GAWvoJupRZQMztnV1a1pK9s/77rWPqmLv3cA3g2cDlwtO3/6Taq0Uj6BvUYTiakmGDvEkA9F/VA4DfAX2qzW1nJIel9wNm2T+o6luWh652Q46j7AJ7HosNvmQOYZZLWoRxv+ZIuV9GMa9KKCfYxAVwJPGHSN34tjqTbKOPOdwGDXx7bXrO7qPpB0rcoZQfOY2j4zfaHF/uiWG5qz+s5lB7AJsBxwDG2m9iNPYnFBPuYAE4HdnRbh2KvFCZxJ+Q4JF1qu5XDd1Y6dfz/fylv+ud0Hc+4JrGYYB8nga8CzqjjcfO38Leylhjml7T+u3r3DNsndhnPGDYCXlrX1U/ETsgxnS3psbYv6TqQnnqY275inbhign3sARwwXbvtd892LDMh6f3A1sAXatOelN20+3cX1XgmaSfkOCRdDjwcuJpy8SAamj9qXV0C/c/Ao1n4MKendhbUGCQdQdlRPryR8F62X9lZTH1LAK2TdDGwhe2/1PurAhe08CY0iTshxzG0I3ghg41isWJJ+jZlCehbKedL7wXcaPtfOg1sRJNYTLB3CWAluIq4GNjB9k31/gMpw0AtJIDzmbCdkKOQtKbtW+v3ehGDn0WsWJLOs/14SRcPft8lnWl7iZVyY/H6OAfwBcpVxG4MXUV0GtF4/oMFu2lFmQt4e7chjWYSd0KO6IuU35fzKF344YO8DTysi6B6aLDq7XpJzwSuAzboMJ6RTHIxwT72AJq/ipC0HmUeQMAPW9lNu7idkLbf1WlgI5L0eepGHts/6TqevpG0G2XhwIbAIcCawLttn9BpYEsxycUE+5gAfmB7W0knAwdTriKOtb1Jx6EtkaRH2f6JpGk3Tdk+f7ZjGtck7oQch6SnUnovT6Zc9V9ASQYf6zSwaMLg9LKltc1qTD1MAK1eRRxme5+hQmrD3NAcxkTthBxXnXTfGvh7yhDiH20/qtuo+qHxQohIuhB4/ZRigod2WdqldwmgdZL+aurE6XRtk2gSd0KOQ9JplF3Y51AuIs6yfUO3UfWHpLMp3/epO7G/2llQY5D0eMqJZgsVE+yy996bBCDpg8BVtj85pf3NwF83tJRskdo5rdTTmcSdkOOQ9FHg8ZQ9AN+nDGedY/uPnQbWEytLIcRJKibYp1VAuwHTbeP/GHAxMNEJQNJfA+sDq0nakgUrUdYE7tdZYOOZuJ2Q43A9ulLS/YFXAkcCfw3ct8u4euRESbu2WghxajFBqfwJdzkJ3KcE4MHmqSmNf9HgJzHZngG8grLs7cMsSAC3Au/oKKZxzZN0OAuvgmiikBfMryT7ZEov4OeU7nyn9dx7Zj/gHZLupCwJHezEbqUQ4vEsKCbY2eavYX0aAjqXMvxwxZT2TSnDEHO7iWw8kp7XypjnVJO4E3Ickt5Gifm8FBOMcU1iMcE+JYBdKKt+3seCq865lE1Ub2qlWynp34EP2r6l3l8b+Cfb/9ZtZBGxJJIOAw6ZpGKCvUkAMH8j0ttYMBdwKfChSfqBLI2kC2xvOaVtoieBJ3knZLRt0n/3h01iMcE+zQFg+1JK6YeFSPqQ7bd2ENJMrCrpvoNhk1pZc9InIXer/067E3L2w4mVRStv/tUuXQcwVa96AIsj6Re2H9J1HKOQ9M/A7pQVKKYcSn6C7Q92GtgIJnEnZLSj1QOFJrmYYK96AEvQwiogAGx/sFYEfTol7vfaPrnjsEa1uqTtp+yEXL3jmKIdG9HmgUITW0ywNz2AxWVfyg/jItsTX1VwoP4BbGr7VEn3A1a1fVvXcS3NJO6EjPY0fKDQxBUT7FMCuJpFs+98tjee3YhmRtJrgH2AB9repC5j/aTtp3Uc2sgmaSdktGMlOFBo4ooJ9iYBrCxqQaltKGWgt6xtl9h+bLeRLd3UnZCD9i53QkY7Wj1QaNikFRPszRzA4sooDzQ0DHGn7bsGm5cl3YslLLGcMBO3EzLa0fCBQsC0xQS37rqYYG8SADAPuIwFp39NnYhpopwycKakd1BqAu0IvA74escxjWoD2zt3HUS0aXEHCnUa1HguppQReQzlQugWSZ0WE+zNEFCt+vk8yjf+aOA423/oNqrxSVoF2BvYiZLETgY+4wZ+kJO4EzLa0fqBQgNDxQTfSqlE3Nk+nt4kgAFJGwN7As+iFPT69waWka0UJnEnZLSl5QOFpikmOFgR9J2uYurTEBAAtq+WdDywGvAyyi9TMwlA0nbAgcBDKT+/wZtoCweTT9xOyGjHdAcKSWrmQCHKe85HmKBigr3pAUh6GLAH5cr/l5RhoBMbXEXwE+DNLHoq0u86C2opJnknZLSj9QOFJlGfEsBfKJMwx1Nq6C/0hdv+SBdxjUvSD20/oes4xiHpRNu7LWYvRiu9l+iYpIunDhdO1xaj69MQ0LuHbt+/syiW3emS/hP4GkNLKSd5GavtQTG4s5iwnZDRlKYPFJpEfeoBvN72f3cdx7KSdPo0zbY98ctYJ3EnZLSj9QOFJlGfEkAzdcNXZpO2EzKiz/o0BLRSaLmcwiTuhIzJlwOFVpw+JYDHSbp1mvYcLD17Jm4nZDQhBwqtIH0aAlrkKMUWTeLB0uOapJ2Q0Y4cKLT8rdJ1ADG2syVNfOXP6Uh6vaQvUzbePZtyNkA2h8WoVpc0v/BbDhRadn0aAvpK1wEsJ9sDr6hr6lsrpzBxOyGjKXsDR0ha6EChDuNpXp+GgA5hyRNJb5zFcGasnga2CNs/n+1YIrqQA4WWnz71AOYN3X43cEBXgSwL2z+XtDllLT2UdfQXdRlTxGyYugJucCZGCyvgJlVvegDDWp4QlrQf5TzUr9Wm5wCH2T6ku6giVjxJ32LBCrjhOlgf7iyoxvU1ATS7KUzSxcATbd9e768OnNPIHEDEjK0MK+AmTVYBtUcMXf3U29MedB+xkml2Bdyk6s0cgKTbWDAJfL+hTWGtbQQ7EvihpOPq/WcDh3cYT8RsaXkF3ETq5RBQ6+oB9/MLYtm+oOOQIla4rIBb/pIAGiFpa2Ad29+c0r478CvbKYsbK6UcKLTiJAE0QtIZwCtsXzOl/eGUVUATXw46YiZyoNCK05s5gJXAg6a++QPYvlLSgzqIJ2JW5EChFSergNqx2hIeSz2U6IMjgfWAQyT9n6Rj676YmKEMATVC0ieB3wH/5qEfmqR3A+vZ3qez4CJmSQ4UWr6SABpRN3x9BtiGUk0TYHNKiYtX2/5DV7FFzIZpDhQ6KwcKLZvMATTC9u2SXkypATSohniZ7as6DCtiNuVAoeUsPYDGSDrP9uO7jiOiKzlQaPlJD6A9P5C0te1zuw4kYjZJej2lB/x44OeUA4W+12lQjUsPoDGSLgceCVwD3E62w0dPSHobZRloDhRaTpIAGpPt8BGxvGQfQGPqG/2GwFPr7TvIzzEiZiA9gMZIOgCYCzzS9iMk/Q3wFdvbdRxaRDQmV47teQ6wO2X8H9vXAWt0GlFENCkJoD131Z3AhvkbxCIixpYE0J5jJH0KWEvSa4BTgU93HFNENChzAA2StCOwE2UJ6Mm2T+k4pIhoUDaCtelnlLX/p0q6n6Q1bN/WdVAR0ZYMATWmDvscC3yqNq0P/G93EUVEq5IA2rMvsB1wK4DtK4B1O40oIpqUBNCeO23fNbgj6V7UFUEREeNIAmjPmZLeAaxWJ4O/Any945giokFZBdQYSasAezO0Cgj4jPODjIgxJQE0RNKWwCaUg2B+3HU8EdG2DAE1QtK7gC8DzwO+UVcDRUTMWHoAjZB0GbC17TskPQj4lu2tu44rItqVHkA7/mT7DgDbvyM/u4hYRukBNELSLZTTkKBM/j556D62d+8irohoVxJAIyQ9ZUmP2z5ztmKJiJVDagG143Jgju3LhxslPRq4oZuQIqJlGUduxyHAnGnaNwA+NsuxRMRKIENAjZB0me1HL+axS20/ZrZjioi2pQfQjnvP8LGIiGklAbTjCkm7Tm2UtAtwVQfxRETjMgTUCEmPAE4EzgbOq81zgScCu9n+WVexRUSbkgAaIum+wIuBwXj/ZcAXbf+pu6giolVJAI2Q9G3bO3UdR0SsPDIH0I7ploBGRMxYNoK14wGSnru4B21/bTaDiYj2JQG04wHAbpQ6QFMZSAKIiLFkDqARks63vVXXcUTEyiNzAO2Y7so/ImLGkgDa8bLpGiWtKuklsx1MRLQvCaAdv5D0dkn/LWknFW+g7AJ+YdfBRUR7MgfQCEnHAzcD5wBPA9YG7gPsZ/vCLmOLiDYlATRC0iW2H1tvrwr8FniI7du6jSwiWpUhoHb8eXDD9j3A1Xnzj4hlkR5AIyTdA9w+uAusBtxRb9v2ml3FFhFtSgKIiOipDAFFRPRUEkBERE8lAURE9FQSQERETyUBRET01P8H1slgXe1O0KgAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "df_all_separators_assignments_counts.plot(kind = \"bar\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "\n", + "Plot showing symbols found which have returned values containing **\"=\"** as assignment symbols" + ] + }, + { + "cell_type": "code", + "execution_count": 207, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 207, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYAAAAGoCAYAAABPODLkAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3XmYpGV97vHvzbCIyKYOikAc1EFFVJYRFzAiCAJ6QOMSiAsKkXiCioka0aOiKAnmRD2BuKFA0LgEo+iIKJss4gYzgAyLyARQR4iMsiqCgPf5432Kqenu6ukZeurpmuf+XFddXe9Tb03/6p2u+tWzyzYREdGetWoHEBERdSQBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEatXTuAyTzykY/0nDlzaocRETFSFi5c+Bvbs1d03oxOAHPmzGHBggW1w4iIGCmSfj6V89IEFBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agZPRM4ptecI75VOwQAbjjmRbVDiAhSA4iIaFYSQEREo5IAIiIalQQQEdGoJICIiEYlAURENCoJICKiUStMAJIeIukiST+RdKWkD5TyrSX9WNK1kv5T0rqlfL1yvLg8Pqfv33pXKb9G0gtX14uKiIgVm0oN4B5gd9tPB7YH9pb0LODDwMdszwVuBQ4p5x8C3Gr7CcDHynlI2hY4AHgKsDfwCUmzpvPFRETE1K0wAbjzu3K4TrkZ2B34r1J+MvCScn//ckx5fA9JKuVftn2P7euBxcDO0/IqIiJipU2pD0DSLEmXATcDZwH/Ddxm+75yyhJgi3J/C+CXAOXx24FH9JdP8JyIiBiyKSUA2/fb3h7Yku5b+5MnOq381IDHBpUvR9KhkhZIWrB06dKphBcREatgpUYB2b4NOA94FrCJpN5iclsCN5b7S4CtAMrjGwO39JdP8Jz+33G87Xm2582ePXtlwouIiJUwlVFAsyVtUu6vD7wAuBo4F3h5Oe0g4Bvl/vxyTHn8u7Zdyg8oo4S2BuYCF03XC4mIiJUzleWgNwdOLiN21gJOsX2apKuAL0v6EHApcEI5/wTg85IW033zPwDA9pWSTgGuAu4DDrN9//S+nIiImKoVJgDblwM7TFB+HROM4rF9N/CKAf/W0cDRKx9mRERMt8wEjohoVBJARESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENCoJICKiUUkAERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjVphApC0laRzJV0t6UpJh5fy90v6laTLym3fvue8S9JiSddIemFf+d6lbLGkI1bPS4qIiKlYewrn3Ae8zfYlkjYEFko6qzz2Mdv/0n+ypG2BA4CnAI8Bzpa0TXn448CewBLgYknzbV81HS8kIiJWzgoTgO2bgJvK/TslXQ1sMclT9ge+bPse4HpJi4Gdy2OLbV8HIOnL5dwkgIiIClaqD0DSHGAH4Mel6E2SLpd0oqRNS9kWwC/7nraklA0qH/s7DpW0QNKCpUuXrkx4ERGxEqacACQ9DPgq8FbbdwCfBB4PbE9XQ/hI79QJnu5JypcvsI+3Pc/2vNmzZ081vIiIWElT6QNA0jp0H/5fsP01ANu/7nv8M8Bp5XAJsFXf07cEbiz3B5VHRMSQTWUUkIATgKttf7SvfPO+014KXFHuzwcOkLSepK2BucBFwMXAXElbS1qXrqN4/vS8jIiIWFlTqQHsArwGWCTpslL2buBASdvTNePcAPwNgO0rJZ1C17l7H3CY7fsBJL0JOAOYBZxo+8ppfC0REbESpjIK6EImbr8/fZLnHA0cPUH56ZM9LyIihiczgSMiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENCoJICKiUUkAERGNSgKIiGjUChOApK0knSvpaklXSjq8lD9c0lmSri0/Ny3lknSspMWSLpe0Y9+/dVA5/1pJB62+lxURESsylRrAfcDbbD8ZeBZwmKRtgSOAc2zPBc4pxwD7AHPL7VDgk9AlDOBI4JnAzsCRvaQRERHDt8IEYPsm25eU+3cCVwNbAPsDJ5fTTgZeUu7vD3zOnR8Bm0jaHHghcJbtW2zfCpwF7D2tryYiIqZspfoAJM0BdgB+DDzK9k3QJQlgs3LaFsAv+562pJQNKo+IiAqmnAAkPQz4KvBW23dMduoEZZ6kfOzvOVTSAkkLli5dOtXwIiJiJU0pAUhah+7D/wu2v1aKf12adig/by7lS4Ct+p6+JXDjJOXLsX287Xm2582ePXtlXktERKyEqYwCEnACcLXtj/Y9NB/ojeQ5CPhGX/lry2igZwG3lyaiM4C9JG1aOn/3KmUREVHB2lM4ZxfgNcAiSZeVsncDxwCnSDoE+AXwivLY6cC+wGLgLuD1ALZvkfRB4OJy3lG2b5mWVxEREStthQnA9oVM3H4PsMcE5xs4bMC/dSJw4soEGBERq0dmAkdENCoJICKiUUkAERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEatMAFIOlHSzZKu6Ct7v6RfSbqs3Pbte+xdkhZLukbSC/vK9y5liyUdMf0vJSIiVsZUagD/Duw9QfnHbG9fbqcDSNoWOAB4SnnOJyTNkjQL+DiwD7AtcGA5NyIiKll7RSfYvkDSnCn+e/sDX7Z9D3C9pMXAzuWxxbavA5D05XLuVSsdcURETIsH0wfwJkmXlyaiTUvZFsAv+85ZUsoGlY8j6VBJCyQtWLp06YMILyIiJrOqCeCTwOOB7YGbgI+Uck1wricpH19oH297nu15s2fPXsXwIiJiRVbYBDQR27/u3Zf0GeC0crgE2Krv1C2BG8v9QeUREVHBKtUAJG3ed/hSoDdCaD5wgKT1JG0NzAUuAi4G5kraWtK6dB3F81c97IiIeLBWWAOQ9CVgN+CRkpYARwK7SdqerhnnBuBvAGxfKekUus7d+4DDbN9f/p03AWcAs4ATbV857a8mIiKmbCqjgA6coPiESc4/Gjh6gvLTgdNXKrqIiFhtMhM4IqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENCoJICKiUUkAERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agkgIiIRq0wAUg6UdLNkq7oK3u4pLMkXVt+blrKJelYSYslXS5px77nHFTOv1bSQavn5URExFRNpQbw78DeY8qOAM6xPRc4pxwD7APMLbdDgU9ClzCAI4FnAjsDR/aSRkRE1LHCBGD7AuCWMcX7AyeX+ycDL+kr/5w7PwI2kbQ58ELgLNu32L4VOIvxSSUiIoZoVfsAHmX7JoDyc7NSvgXwy77zlpSyQeUREVHJdHcCa4IyT1I+/h+QDpW0QNKCpUuXTmtwERGxzKomgF+Xph3Kz5tL+RJgq77ztgRunKR8HNvH255ne97s2bNXMbyIiFiRVU0A84HeSJ6DgG/0lb+2jAZ6FnB7aSI6A9hL0qal83evUhYREZWsvaITJH0J2A14pKQldKN5jgFOkXQI8AvgFeX004F9gcXAXcDrAWzfIumDwMXlvKNsj+1YjoiIIVphArB94ICH9pjgXAOHDfh3TgROXKnoIiJitclM4IiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENCoJICKiUUkAERGNSgKIiGhUEkBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agHlQAk3SBpkaTLJC0oZQ+XdJaka8vPTUu5JB0rabGkyyXtOB0vICIiVs101ACeb3t72/PK8RHAObbnAueUY4B9gLnldijwyWn43RERsYpWRxPQ/sDJ5f7JwEv6yj/nzo+ATSRtvhp+f0RETMGDTQAGzpS0UNKhpexRtm8CKD83K+VbAL/se+6SUrYcSYdKWiBpwdKlSx9keBERMcjaD/L5u9i+UdJmwFmSfjrJuZqgzOMK7OOB4wHmzZs37vGIiJgeD6oGYPvG8vNm4FRgZ+DXvaad8vPmcvoSYKu+p28J3Phgfn9ERKy6VU4AkjaQtGHvPrAXcAUwHzionHYQ8I1yfz7w2jIa6FnA7b2mooiIGL4H0wT0KOBUSb1/54u2vyPpYuAUSYcAvwBeUc4/HdgXWAzcBbz+QfzuiIh4kFY5Adi+Dnj6BOW/BfaYoNzAYav6+yIiYnplJnBERKOSACIiGpUEEBHRqCSAiIhGJQFERDQqCSAiolFJABERjUoCiIhoVBJARESjkgAiIhqVBBAR0agkgIiIRiUBREQ0KgkgIqJRSQAREY1KAoiIaFQSQEREo5IAIiIalQQQEdGoJICIiEYlAURENCoJICKiUUkAERGNGnoCkLS3pGskLZZ0xLB/f0REdIaaACTNAj4O7ANsCxwoadthxhAREZ21h/z7dgYW274OQNKXgf2Bq4YcRzRuzhHfqh0CADcc86LaIUTDhp0AtgB+2Xe8BHjmkGOIiD5Jhsu0di2GnQA0QZmXO0E6FDi0HP5O0jWrPaoVeyTwm9pBzBAP+lrow9MUSX25FsvkWiwzE67FY6dy0rATwBJgq77jLYEb+0+wfTxw/DCDWhFJC2zPqx3HTJBrsUyuxTK5FsuM0rUY9iigi4G5kraWtC5wADB/yDFERARDrgHYvk/Sm4AzgFnAibavHGYMERHRGXYTELZPB04f9u99kGZUk1RluRbL5Fosk2uxzMhcC9le8VkREbHGyVIQERGNSgKIiGhUEkBERKOG3gk8SiRtQTeh4oHrZPuCehHVIemxwFzbZ0taH1jb9p2144qYCSQJeBXwONtHSfoz4NG2L6oc2gqlE3gASR8G/pJunaL7S7Ft71cvquGT9Aa6mdkPt/14SXOBT9neo3JoQyfpUcA/Ao+xvU9ZyPDZtk+oHNrQ5VosI+mTwJ+A3W0/WdKmwJm2n1E5tBVKE9BgLwGeaHtf2/+r3Jr68C8OA3YB7gCwfS2wWdWI6vl3ujksjynHPwPeWi2auv6dXIueZ9o+DLgbwPatwLp1Q5qaJIDBrgPWqR3EDHCP7T/2DiStzZj1mxrySNun0H3bw/Z9LKsdtibXYpl7y1L3BpA0m3JdZrr0AQx2F3CZpHOAe3qFtt9SL6Qqzpf0bmB9SXsCfwt8s3JMtfxe0iNY9kZ/FnB73ZCqybVY5ljgVGAzSUcDLwfeUzekqUkfwACSDpqo3PbJw46lJklrAYcAe9Gt5noG8Fk3+IcjaUfgOGA74ApgNvBy25dXDayCXIvlSXoSsAfde+Qc21dXDmlKkgAmURas26YcXmP73prxRH2lCeyJdG/0pv8mci06kh4+QfGdo3A9kgAGkLQbcDJwA90f+FbAQa0MA5V0iu1XSlrEBG3+tp9WIayqJP3FBMW3A4ts3zzseGoqbd4vAuaw/DDpj9aKqRZJN9B9PtxK91mxCXATcDPwBtsL60U3ufQBDPYRYC/b1wBI2gb4ErBT1aiG5/Dy88VVo5hZDgGeDZxbjncDfgRsI+ko25+vFVgF36Qb9bKIEenwXI2+A5xq+wwASXsBewOnAJ9gBu96mAQw2Dq9D38A2z+T1MyoINs3lbvb2v52/2OS3gh8avhRVfcn4Mm2fw0PjIX/JN0b/AKgpQSwZYu1wAHm2X5j78D2mZL+0fbfS1qvZmArkmGggy2QdIKk3crtM8CMrcqtRu+VtHvvQNI7gf0rxlPTnN6Hf3EzsI3tW4AZ3947zb5dvukG3CLpnZIeW27/ANxamslmdO0oNYDB/jfdJKi30LXrXUBXnWvNfsBpkt5BV619Uilr0fcknQZ8pRy/DLhA0gbAbfXCquJHwKlllNi9dO8R296oblhV/BVwJPB1uutwYSmbBbyyYlwrlE7gWCFJmwFn09WADm5xCCg8sObLy+hmRvfe6F9t8XpIuo5utvyiFl//miIJYIyMfulIupPlX/+6wH2lrNVvelFIOgPYx/aMbuIYhjLz9x+ApwAP6ZXb3n3gk2aINAGNl9EvgO0Na8cw05TZrscBT6ZLiLOA3zeaDG8CzpP0bZafKd/cMFDgC8B/0n1mvBE4CFhaNaIpSifwGH2jX/7W9s/7b3TLIDRH0n6S/qXcWk6M/wYcCFwLrA/8NV1CaNH1wDl0iXDDvluLHlFWQb3X9vm2DwaeVTuoqUgNYLA9gXeOKdtngrI1mqRjgGfQfcsBOFzSrraPqBhWNbYXS5pl+37gJEk/qB1TDbY/UDuGGaQ3AuwmSS8CbgS2rBjPlCUBjCHpf9N903+cpP51TTYEvl8nqqr2BbbvtfVKOhm4FGgxAdxVlge5TNI/0zWDbFA5pipGud17NfiQpI2Bt9HVCDcC/q5uSFOTBDDeF4FvA//E8h9yd5bx3i3aBOi99o1rBlLZa+iaTd9E9wbfim5UUItGtt17OpWx/nNtn0a3LMjzK4e0UjIKaBJlxcNd6Ua+fN/2JZVDGjpJBwLH0C1/IODPgXfZ/nLVwIasvNFPtv3q2rHMBJIW2t5J0uW9kXGSzrf9vNqxDZukc22P1Ad/T2oAA0h6L90kjq+VopMkfcX2hyqGNXS2vyTpPLp+AAHvtP0/daMaPtv3S5otad3+DXIaNrLt3qvBDyT9G12N6Pe9wlH4wpgawACSrgZ2sH13OV4fuMT2k+tGNnyS9qP75g9wvu0mN4SR9GlgR2A+y7/Rmxv6WEaDfY+uGazX7v0B2/OrBlaBpHMnKPYo9IekBjDYDXSdW3eX4/WA/64WTSUTjAJ6i6Tn2H5XxbBqubHc1qLdIY8AlDZvGMF27+k2qs0/kBrAQJK+TvfBdxZdH8CedFP/b4Z2toYsI6H6RwHNAi5tZUb0RCRtSPcN73e1Y6mljAJ6A+P3Azi4Vky1lBFAR9JXSwaOsj3jt8hMDWCwU8ut57xKccwEGQUESNqObsnnh5fj3wCvtX1l1cDq+AZdE9DZtLsZfM+JdNti9hZ+ew1wEjDRBkIzSmoAMamMAlqmTPr6P7bPLce7Af9o+zlVA6tA0mW2t68dx0ww0bUYleuTGsAYWQxueRkFtJwNeh/+ALbPK0tBt+g0SfvaPr12IDPAH8rs+AsBJO0C/KFyTFOSGsAYkja3fZOkx070eFkTqBmSXgp8t9eeKWkTYDfbX68b2fBJOhW4hGU7f72abjeol9SLqo6yWuwGdAvBNb0fgKSnA59jWfPorXT7h18++FkzQxLABEpH5xm2X1A7ltoGVG8vtb1DrZhqkbQp8AG6yYHQbRL0ftutbQYTfSRtbft6SRsB2L6jV1Y7thVJE9AEyqSfuyRtPAo9+avZRCvGtvp384Kxo78kvYJlO4RFm74K7Gj7jr6y/wJ2qhTPlLX6Rp6Ku4FFks5i+Uk/TQz/7LNA0keBj9P1ibyZNvdGBngX4z/sJyprkqRLbO9YO45hkfQkusXwNpbUP+JnI/oWyJvJkgAG+1a5te7NwHvpprkDnAm8p144wydpH7pVUbeQdGzfQxvR7ZIWQEsf/sUT6RbD2wT4X33ld9LNkZjx0gcwQBndcXdZ973XL7Ce7bvqRhbDVjr5tgeOAt7X99CdwLm2b60SWEWSDga+Z/va2rHUJunZtn9YO45VkR3BBjuHbtennvXpJr00T9KhtWMYJts/sX0y8ITy84vA5cCFLX74F3OAT0v6b0mnSHqzpBk/7n06SXqDpLm2f6jOiZJul3R5WUl4xksCGOwh/VP9y/2HVoxnJlHtAIZJ0qckPcX2vWXa/0/ohv1dWibKNcf2+8piZ9vRLZHyDtrrGzqcbs0w6LYKfTrwOODvgX+tFNNKSQIY7Pf9WVzSTozI5I7pJGnrCYrPHHogdT23b7mH1wM/s/1UulEe/1AvrHokvadsCH8m8ATg7bS3HPR9tnvLYr8Y+Jzt39o+mxHZKS6dwIO9FfiKpBvL8ebAX1aMp5av0i2B3G8khrhNo/71//ekjPqx/T9SU5Whfn9B1wH+LbrFz37UWzq9IX+StDndxK89gKP7Hlt/4qfMLEkAA9i+uAzzeiJdk8dP+7L9Gm9NGOI2jW4r69//CtgFOARA0tqMyBt9utnesayKuitdUvyMpF/b3nUFT12TvA9YAMwC5vdqiZKeB1xXM7CpSgIYoEzw+Y7tKyS9B/iApA+Nwi4/02Tkh7hNo78BjgUeDby1by2kPWh0qHBZGfW5wPOAecAv6VYHbYbt08qSMRuOGQywgBFpLcgw0AF6e51K2pVug/h/Ad5t+5mVQxuqUR7iFquPpG/RLYXxPeDilmrHE5H0HMbvjfC5agFNURLAAL31biT9E7DI9hdbXAMnG3+ApOOYYGXYngZnhwMgaV1gm3J4TatJQNLngccDl7FsbwSPwt9FmoAG+1XZA/YFwIclrUebo6ay8UdXpY8+pZ37c3TDIAVsJekg2xdUDayOecC2HsFv06kBDCDpocDedN/+ry29/U+13dQQyFHZ2CKGS9JC4K9sX1OOtwG+ZLul0WEASPoK8BbbN9WOZWWlBjCA7bsk3Uw3yuFauiFvLU57z8YfRWkOeyewLX0jocqEqNas0/vwB7D9M0nr1AyookcCV0m6iG5/BABs71cvpKlJDWAASUfSVe2eaHsbSY8BvmJ7l8qhDVXfxh9/LLeWN/44k25RvLcDbwQOApbafmfVwCqQdCJdv0hvc5xXAWvbfn29qOoozWHj2D5/2LGsrCSAASRdBuwAXNLr+O2NDKobWdQiaaHtnfr/DiSdb3vCD4A1WekTO4yuhiy6EUGfsH3PpE9cQ0l6FN22qQAX2b65ZjxTlSagwf5o25IMD6wO2hx1U11fBWxt+4OStgI2t31R5dBq6I1yuUnSi4AbaW/5AwDKB/1Hy61pkl4J/F/gPLpkeJykd9j+r6qBTUFqAANIejswl26W4z8BBwNftH1c1cCGTNIngT8Bu9t+ctkW8Uzbz1jBU9c4ZTbw94CtgOPoZkV/wPb8qoENkaRFTD4ktrkasqSfAHv2vvWXvqKzbT+9bmQrlhrAALb/RdKewB10s2LfZ/usymHV8Mwy7f9SANu3lvHfzbF9Wrl7O/D8mrFU9OLy87Dys78PoNW9MtYa0+TzW0ZkyHgSwACSNgFuA06hW/2x1b2B7y2b4fSawmbT1QiaI+lk4PDeJvClNvSRlibF2f45gKRdxgyIOELS9+k2zWnNdySdAXypHP8lMBKj5pIAxijfbo8HXkK3oNNawGMlnQq80fYfJ3v+GuhY4FRgM0lHAy+nsS0h+zyt9+EPD9SGmpoZ3mcDSbvavhAeWAqhyX4y2++Q9DK6hQIFHG/71MphTUn6AMaQdBTdtO432r6zlG1Ityn6z22/t2Z8NZSVQfeg++M+x/bVlUOqorT17tZb+EvSw4Hzy94ATSn7Y5wIbFyKbgMObmixxDVCEsAYkq4Adh6796+kh9Gteb5dncjqKU0dW7H8WkDNvdElvRZ4F91+CACvAI62/fnBz1qzSdqI7nOkuSZSSRfa3rXMlen/IB2ZuTJJAGNMNtZf0qLWvu1J+iDwOuC/WfZH7kZnvyJpW6D32r9r+6qa8dRS5gG8jPGLBLbYBzCy0gcwnss33om2emqx8/OVwOMb7PsYZB3KN7xyv1XfoBsNtZC+5Q9aJOnxwBLb90jaDXga3faQt03+zPqSAMbbmO6PeqIE0GJ16Qq6TWFGYmbj6iTpcLqlsb9K9/fxH5KOb21uSLGl7b1rBzFDfBWYJ+kJwAnAfOCLwL5Vo5qCNAHFpCTNo/u2dwUjttDVdJN0OfBs278vxxsAP2x08tPxwHG2F9WOpTZJl5S5Mu8A7rZ93KjsHZIawBiSxm6AvpwGOz9PBj4MLKLNJrB+Yvk9Ee5n4ppiC3YFXifperovBr2Oz+aSId1cmQPpFgfsbZ86Es2DSQDjfWSSx8yyDsBW/Mb2sbWDmCFOAn5c5oRAN1fkhIrx1LRP7QBmkNfTrQ57tO3rJW0N/EflmKYkTUAxKUkfpfuGN5/lm4BaqwkBD9QQH1gB0/allUMaKkkb2b6jzIEYx/Ytw45pJukNmbZ9ee1YpiIJYBKStmP85h8zfqPn6STp3AmKmxoGOujDrqelDz1Jp9l+cWn6Mcs3gdn24yqFVo2k84D96FpULgOW0k0Q/PuacU1FEsAAZUOY3egSwOl0Vd4Lbb+8ZlwxfBN82PXeNL127xY/9D5PtwfA92z/tHY8NfU6fCX9Nd23/yNHZe+Q9AEM9nLg6cCltl9fNnz4bOWYhk7S+yYqb2nCj+2ta8cwA51E1xR2nKTHAZfSJYN/rRtWFWuXPcNfCfyf2sGsjCSAwf5g+0+S7ivT3W8GmvumB/y+7/5D6JYDbnItoFjG9nclnU+3C9bz6TpBtwNaTABHAWcA37d9cUmII7F/eJqABpD0CeDdwAHA24DfAZe1uOdpv7IEwHzbL6wdy0zQGwNeO45hk3QO3eqfP6TbJOfCUdkGMZZJApgCSXOAjUalZ391KqMcLrI9t3YsUY+kjwE70Y0M+z5df8APbf+hamAVSNoG+CTwKNvbSXoasJ/tD1UObYVGYteaGiS9VNLGALZvAH4h6SV1oxo+SYskXV5uVwLX0GY1H0kHS0riA2z/ne0/B15KtwPWSXRLQrfoM3SrxN4LUL4oHlA1oilKH8BgR/Zv6mD7tjIy6OsVY6rhxX337wN+bfu+WsFUNgfabiVaAAANnUlEQVR4taTH0q0X9T26js/LqkZVgaQ3Ac+lqwX8nG5vgO9VDaqeh9q+SFpuUvhIvEeSAAabqHbU4vXaHLiyb3Och0l6iu0fV45r6Gy/D0DS+nSLwr0D+H/ArJpxVbI+8FFgYcNfCHp+U1YE7W2b+nLgprohTU36AAaQdCJdlfbjdP+xbwY2tf26mnENW9kMfkeXPxRJawELGu34fA/dtn8Poxv2eCFdDWAk3uyxepRRP8cDzwFuBa4HXl2ajme0JIABykqP7wVeQDfh50zgQ72VIFsh6TLb248pG4lJLtNN0iV0VftvAefT7RB3d92oYqYonxlr9WrLoyAJYAXKHIA/2f5d7VhqkPQ14Dy6UQ4Afws833ZzHeLwwP7Qu5bbK+n6RHatG1XUVPaJOAm4k65DeEfgCNtnVg1sCjIKaABJTy3NH4uAKyUtLGsDteaNdFXbX5XbM4FDq0ZUSfn/fzXdsr9/CSwBvls1qJgJDrZ9B7AXsBnd6qDH1A1palrs1JyqTwN/b/tcgLLVW6+drxllcs9IDGkbgg/TjXc/FrjY9r2V44mZoTf8Z1/gJNs/0ZghQTNVagCDbdD78AewfR7dzMemSNpS0qmSbpb0a0lflbRl7bhqsP0i4GPAHcATJY3Eph+x2i2UdCZdAjijNBOOxOZJ6QMYoGz6cQnw+VL0amBea23fks6i29+0/zq8yvae9aKqQ9LzgM8BN9B969sKOMj2BTXjirrKyLjtgevKfKFHAFuMwsoBSQADlCUPPkDf5h/A+23fWjWwIRswCmhcWQskLQT+yvY15Xgb4Eu2d6obWcSqSR/AAOWD/i2145gBfiPp1cCXyvGBdFP/W7RO78MfwPbP0gwUExmVRQJTAxhD0jdZtuHHOLb3G2I41Un6M+DfgGfTXZcfAIfb/nnVwCookwPNsuawVwFrt75CbIyuJIAxSjvvQLbPH1YsMbOUpbAPY/lmwU/YvmfSJ8YaTdLBdDPCR2IPgH5JADEhSccxeU0ozWMRgKSj6L4UjNwigUkAK0HS+22/v3YcwyDpoHJ3F7p9kf+zHL+CbgGwv6sSWAWSFjF5MmxuWYwYr2+RwLfTjQKa8YsEphN45SysHcCw2D4ZQNLr6JZ+uLccf4puXaSW9JbEPqz87O8DuGv44cRMMsEigW9nRJbGTg0gJiXpGuDZtm8px5vSLYL2xLqRDZ+k79veZUVl0ZZRXiQwNYABJM2mq87Noe862T64VkyVHANcKqk3K/p5wPvrhVPVBpJ2tX0hgKTn0ODs8Fie7R37FgncE/iMpJFYJDA1gAEk/YCuGrcQuL9Xbvur1YKqRNKj6RaBA/ix7f+pGU8tknai2/lq41J0G91CYJfUiypqK4sEPpfuy9E84Jd0ncDvqxrYFCQBDNDqbNdYsbJEuGzfXjuWqE/St+iGBH+PEVskMAlgAEkfAn5g+/Tascw0ozLLcbqVeQAvY3yz4FG1YoqZQdK6wDbl8JpRSQJJAANIupOuffePQO8/07Y3qhdV1CTpO8DtjG8W/Ei1oKK6UV4kMAkgJjXKsxynm6QrbLe4KVBMYpQXCcwooElI2g/483J4nu3TasZTyRzg1ZJGbpbjavADSU+1vah2IDGjjOwigakBDCDpGOAZwBdK0YF0M2CPqBdVPaM4y3G6SboKeAJwPXAPXXXfmQnctlFeJDAJYABJlwPb2/5TOZ4FXNram32CWY4X0tUAbqoaWAWlFjROiyujxjKjvEhgEsAAJQHs1jcD9uF0zUCtJYCRneU4XSRtZPuO8jcwTu9vJGLUpA9gsH9i2QxY0fUFvKtuSMM3yrMcp9EX6dYDWkhX1e/f8NvA42oEFXWtCYsEpgYwCUmb0/UDiEZnwI7yLMfpJunzlAk/tn9aO56oq69JcMJFAkdhfkgSwBiSnmT7p5ImnOjU2rT/UZ7lON0k7U5XE3ou3bf+S+mSwb9WDSyqGuVFApMAxpB0vO1D+xY/62fbuw89qMpGdZbj6lAGAzwDeD7wRuAPtp9UN6qoSdJlwJvGLBL4iVFYSiYJYABJDxnb2TlR2ZpulGc5TjdJ59DNDv8hXY3oQts3140qahvlRQKTAAaYaL2bFtfAGeVZjtNN0seAnejmAHyfrmnsh7b/UDWwmBFGcZHAjAIaoyx9vAWwvqQdWDbiYyPgodUCq2dkZzlOt942mJIeBrweOAl4NLBezbiirrGLBErdR8YodAInAYz3QuB1wJbAR1iWAO4A3l0pppoWSDqB5Uc4NLM1Zj9Jb6LrAN4J+DldtX8ktv6L1eobLFskcMZP/uqXJqABJL2sxc1fxhrlWY7TTdI76F7/Qtv31Y4nZoZRXiQwCWAASf8I/LPt28rxpsDbbL+nbmQRMZNIOh44bhQXCUwCGEDSpbZ3GFPWTCfwmjDLMWIYRnmRwPQBDDZL0nq9po6yGmZLnX0vLj8nnOU4/HAiZqx9agewqlIDGEDSPwD70Y30MHAwMN/2P1cNbMhGeZZjxOq0JiwSmBrAALb/uawI+gK6Kt0HbZ9ROawaNpC065hZjhtUjiliJhj5RQJTA5hEWexpru2zJT0UmGX7ztpxDdMoz3KMGIZRXiQwCWAASW8ADgUebvvxkuYCn7K9R+XQqhjFWY4RwzDKiwQmAQxQFnjamW4Z6B1K2SLbT60b2XCNneXYKx+FWY4RwzKqiwSmD2Cwe2z/sTetW9LaTDIscg02srMcI4ZhgkUCnzEqiwQmAQx2vqR3060JtCfwt8A3K8dUw5a2964dRMQMdjnd8iDb0X1Zuk3SSCwSmCagASStBRwC7EXXu38G8Fk3dsFGeZZjxDD1LRL4duDRtmf8vKEkgJjUKM9yjBiGCRYJ7I0I+m7VwKYgTUADSNoFeD/wWLrr1Pvgm/Fje6fZyM5yjBiS9YGPMoKLBKYGMICknwJ/R9f5eX+v3PZvqwU1RGvCLMeImFxqAIPdbvvbtYOoaORnOUbE5FIDGEDSMcAs4Gv0DX9sbQbsKM9yjIjJJQEMIOncCYpte/ehB1PRKM9yjIjJJQHECo3qLMeImFz6AAbIEgidUZ7lGBGTW6t2ADPYN4D9gfuA3/fdWnM58Ee6WY5PA7Yrm+NExIhLE9AAo7zR8+owirMcI2JyaQIa7AeSntr6EggTzHI8ka4pKCJGXGoAA2QJhI6kd9ANAx25WY4RMbkkgAHKbmDj2P75sGOJiFgdkgAmIenpdM0f0I19/0nNeCIiplNGAQ0g6XDgC8Bm5fYfkt5cN6qIiOmTGsAAki4Hnm379+V4A+CHrfUBRMSaKzWAwUTfKqDlvgacGxExcjIMdLCTgB9LOrUcvwQ4oWI8ERHTKk1Ak5C0I91CaAIusH1p5ZAiIqZNEsAYkp4BPHLsXgCS9gN+ZXthncgiIqZX+gDG+7/A1ROUX1Uei4hYIyQBjPcI2zeMLbS9GHjE8MOJiFg9kgDGm2ylyw2GFkVExGqWBDDe2ZKOlrTckE9JHwC+WymmiIhpl07gMcqEr88COwOXleKnAwuAv7b9u1qxRURMpySACZRv/88FNi5FV9q+rmJIERHTLglgAEkLbe9UO46IiNUlfQCD/ajMCYiIWCOlBjBA2RDmicANdHsBN7khTESsuZIABsiGMBGxpksT0ADlg34rYPdy/y5yvSJiDZIawACSjgTmAU+0vY2kxwBfsb1L5dAiIqZFvtEO9lJgP7r2f2zfCGxYNaKIiGmUBDDYH91VjwwPTBCLiFhjJAEMdoqkTwObSHoDcDbwmcoxRURMm/QBTELSnsBedENAz7B9VuWQIiKmTbaEnNzP6Mb+ny3poZI2tH1n7aAiIqZDmoAGKM0+/wV8uhRtAXy9XkQREdMrCWCww4BdgDsAbF8LbFY1ooiIaZQEMNg9tv/YO5C0NmVEUETEmiAJYLDzJb0bWL90Bn8F+GblmCIipk1GAQ0gaS3gEPpGAQGfdS5YRKwhkgAmIGkH4PF0G8FcXTueiIjVIU1AY0h6H/CfwMuAb5XRQBERa5zUAMaQdCXwDNt3SXoE8B3b2RgmItY4qQGMd7ftuwBs/5Zco4hYQ6UGMIak24ALeod0m8P3jrG9X424IiKmWxLAGJKeN9njts8fViwREatT1gIa7ypgtu2r+gslPQW4uU5IERHTL+3b4x0HzJ6gfEvgX4ccS0TEapMmoDEkXWn7KQMeu8L2dsOOKSJidUgNYLx1VvGxiIiRkgQw3rWS9h1bKGkf4LoK8URErBZpAhpD0jbAacAPgIWleB7wbODFtn9WK7aIiOmUBDABSesBfwX02vuvBL5o++56UUVETK8kgDEknWl7r9pxRESsbukDGG+iIaAREWucTAQbb2NJfzHoQdtfG2YwERGrSxLAeBsDL6ZbB2gsA0kAEbFGSB/AGJIusb1j7TgiIla39AGMN9E3/4iINU4SwHivmahQ0ixJrxp2MBERq0sSwHi/kPQuSf8maS913kw3C/iVtYOLiJgu6QMYQ9I3gFuBHwJ7AJsC6wKH276sZmwREdMpCWAMSYtsP7XcnwX8Bvgz23fWjSwiYnqlCWi8e3t3bN8PXJ8P/4hYE6UGMIak+4Hf9w6B9YG7yn3b3qhWbBER0ykJICKiUWkCiohoVBJARESjkgAiIhqVBBAR0agkgIiIRv1/DRG3G/49Bv0AAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "df_symbol_equals_counts.plot(kind = \"bar\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The dataset contains cookies that were accessed via the JS API (`window.document.cookie`). They are stored as key-value pairs of the form `=`, delimited by `;`. Note, however, that this only represents a subset of all cookies used, since we don't have visibility into those that are sent with each request." + ] + }, + { + "cell_type": "code", + "execution_count": 152, + "metadata": {}, + "outputs": [], + "source": [ + "df_cookies = df_value_exists[df_value_exists.symbol == \"window.document.cookie\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 153, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
argumentslocationscript_urlsymbolvaluevalue_1000value_len
50{}https://www.syracuse.edu/about/https://www.google-analytics.com/analytics.jswindow.document.cookie_ga=GA1.2.1687044407.1513387667; path=/; expires=Mon, 16 Dec 2019 01:27:47 GMT; domain=syracuse.edu;_ga=GA1.2.1687044407.1513387667; path=/; expires=Mon, 16 Dec 2019 01:27:47 GMT; domain=syracuse.edu;100
51{}https://www.syracuse.edu/about/https://www.google-analytics.com/analytics.jswindow.document.cookie_ga=GA1.2.1687044407.1513387667_ga=GA1.2.1687044407.151338766731
52{}https://www.syracuse.edu/about/https://www.google-analytics.com/analytics.jswindow.document.cookie_ga=GA1.2.1687044407.1513387667_ga=GA1.2.1687044407.151338766731
53{}https://www.syracuse.edu/about/https://www.google-analytics.com/analytics.jswindow.document.cookie_ga=GA1.2.1687044407.1513387667_ga=GA1.2.1687044407.151338766731
54{}https://www.syracuse.edu/about/https://www.google-analytics.com/analytics.jswindow.document.cookie_gid=GA1.2.794143.1513387667; path=/; expires=Sun, 17 Dec 2017 01:27:47 GMT; domain=syracuse.edu;_gid=GA1.2.794143.1513387667; path=/; expires=Sun, 17 Dec 2017 01:27:47 GMT; domain=syracuse.edu;97
\n", + "
" + ], + "text/plain": [ + " arguments location \\\n", + "50 {} https://www.syracuse.edu/about/ \n", + "51 {} https://www.syracuse.edu/about/ \n", + "52 {} https://www.syracuse.edu/about/ \n", + "53 {} https://www.syracuse.edu/about/ \n", + "54 {} https://www.syracuse.edu/about/ \n", + "\n", + " script_url symbol \\\n", + "50 https://www.google-analytics.com/analytics.js window.document.cookie \n", + "51 https://www.google-analytics.com/analytics.js window.document.cookie \n", + "52 https://www.google-analytics.com/analytics.js window.document.cookie \n", + "53 https://www.google-analytics.com/analytics.js window.document.cookie \n", + "54 https://www.google-analytics.com/analytics.js window.document.cookie \n", + "\n", + " value \\\n", + "50 _ga=GA1.2.1687044407.1513387667; path=/; expires=Mon, 16 Dec 2019 01:27:47 GMT; domain=syracuse.edu; \n", + "51 _ga=GA1.2.1687044407.1513387667 \n", + "52 _ga=GA1.2.1687044407.1513387667 \n", + "53 _ga=GA1.2.1687044407.1513387667 \n", + "54 _gid=GA1.2.794143.1513387667; path=/; expires=Sun, 17 Dec 2017 01:27:47 GMT; domain=syracuse.edu; \n", + "\n", + " value_1000 \\\n", + "50 _ga=GA1.2.1687044407.1513387667; path=/; expires=Mon, 16 Dec 2019 01:27:47 GMT; domain=syracuse.edu; \n", + "51 _ga=GA1.2.1687044407.1513387667 \n", + "52 _ga=GA1.2.1687044407.1513387667 \n", + "53 _ga=GA1.2.1687044407.1513387667 \n", + "54 _gid=GA1.2.794143.1513387667; path=/; expires=Sun, 17 Dec 2017 01:27:47 GMT; domain=syracuse.edu; \n", + "\n", + " value_len \n", + "50 100 \n", + "51 31 \n", + "52 31 \n", + "53 31 \n", + "54 97 " + ] + }, + "execution_count": 153, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_cookies.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How many cookie values are there in the sample?" + ] + }, + { + "cell_type": "code", + "execution_count": 154, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "3189" + ] + }, + "execution_count": 154, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(df_cookies)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Analysis based on finding Unique IDs from value" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How many cookies were accessed in each call, and what is the distribution?" + ] + }, + { + "cell_type": "code", + "execution_count": 155, + "metadata": {}, + "outputs": [], + "source": [ + "def parse_cookie_entries(contents):\n", + " \"\"\"Split value contents into '=' strings.\"\"\"\n", + " entries = contents.split(\";\")\n", + " cleaned_entries = [e.strip() for e in entries if len(e) > 0]\n", + " return cleaned_entries" + ] + }, + { + "cell_type": "code", + "execution_count": 156, + "metadata": {}, + "outputs": [], + "source": [ + "cookie_num_entries = df_cookies.value.apply(lambda c: len(parse_cookie_entries(c)))" + ] + }, + { + "cell_type": "code", + "execution_count": 157, + "metadata": {}, + "outputs": [], + "source": [ + "name_value = df_cookies.value.apply(parse_cookie_entries)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 158, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1 158\n", + "2 308\n", + "3 363\n", + "4 681\n", + "5 180\n", + "6 174\n", + "7 154\n", + "8 48 \n", + "9 115\n", + "10 67 \n", + "11 44 \n", + "12 77 \n", + "13 58 \n", + "14 114\n", + "15 67 \n", + "16 107\n", + "17 96 \n", + "18 59 \n", + "19 61 \n", + "20 13 \n", + "21 23 \n", + "22 10 \n", + "23 13 \n", + "24 6 \n", + "25 14 \n", + "26 21 \n", + "27 22 \n", + "28 2 \n", + "29 16 \n", + "30 3 \n", + "31 5 \n", + "32 23 \n", + "33 3 \n", + "34 84 \n", + "Name: value, dtype: int64" + ] + }, + "execution_count": 158, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cookie_num_entries.value_counts().sort_index()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Working with arguments\n", + "" + ] + }, + { + "cell_type": "code", + "execution_count": 159, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "749" + ] + }, + "execution_count": 159, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['arguments'].nunique()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finding only the values from cookies = pair" + ] + }, + { + "cell_type": "code", + "execution_count": 160, + "metadata": {}, + "outputs": [], + "source": [ + "cleaned_entries = [j.split('=')[1] for e in name_value if len(e) > 0 for j in e if (len(j.split('='))>1 and (len(j.split('=')[1]) > 0))]" + ] + }, + { + "cell_type": "code", + "execution_count": 161, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "26740" + ] + }, + "execution_count": 161, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(cleaned_entries)" + ] + }, + { + "cell_type": "code", + "execution_count": 162, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "cleaned_entries = np.unique(np.array(cleaned_entries))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 163, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['!UOQOLMykpJUYZw5lqHwr31BVacIjk6Tn1SSawmdlaiOSUwiJdrF0kpUUFK0OUs4d2owns13NYN30Cr8ys/iMqN4CKako8GM/lkzsxFl4gcuLiTfXnC8lEpXEfTHvmNFQqWKvN1/bVPSg66tSmng/8g65YCMkT2Q', '\"\"', '\"sl', '\"v1_7Nqx7WgARKkyql4Ps5rKig', '$43260$', '%20s_cc%3Dtrue%3B%20s_prevsite%3Dshwtvideo%3B%20s_sq%3D%3B', '%20s_fid%3D47CBF715C3AF0EE6-167F880BA503D48C%7C1576527897009%3B', '%2d1%2c10151', '%2d1002%2c10151%2cnull%2cnull%2cnull%2cnull%2cnull%2cnull%2cnull%2cnull%2cUu24%2fUlPbKYPxc7nGyD2K7flJKWHM2SZJoSh8UQ%2bJ4pPGQVTCdwQZ4Au2%2bQ1f9ZMLY8Y8Zf0MOmO%0afUKaWoassiHZcNaRxr5x5sh20ncgOujopJr6ZMs9uO%2fLbvvxZnOH0FAfcxsC37DUHNTSTdxVd4Nz%0acHLwdTC6mgVTgayM9gnMuW5ZBHFB3byGqoMPpFsKdFX%2bYzYKN0sx1W%2bqwjZoCA%3d%3d', '%2d1002%2caH04lvZPDCL5uRr%2fEORnyW%2b3h%2bc%3d', '%3F', '%5B%22n%3Dhttp%253A%252F%252Fwww.ufc.ca%252Fmedia%252FSubmission-of-the-Week-Mickey-Gall-vs-Mike-Jackson%26u%3Doeu1513383432864r0.3440539361011914%26wxhr%3Dtrue%26time%3D1513383432.972%26f%3D3444161321%2C6727930006%2C5737351521%2C9416284852%2C7632071432%2C7099050768%2C8360350502%2C9259950934%2C8268964702%2C8318243746%2C6915390509%2C6438380604%2C8104963187%2C9182074165%2C8282646095%2C8265643674%2C4773199533%2C8286981864%2C8517732076%2C4795490095%2C7614890646%2C5673344986%26g%3D%22%5D', '%5B%22n%3Dhttp%253A%252F%252Fwww.ufc.ca%252Fmedia%252FSubmission-of-the-Week-Mickey-Gall-vs-Mike-Jackson%26u%3Doeu1513383432864r0.3440539361011914%26wxhr%3Dtrue%26time%3D1513383433.214%26f%3D3444161321%2C6727930006%2C5737351521%2C9416284852%2C7632071432%2C7099050768%2C8360350502%2C9259950934%2C8268964702%2C8318243746%2C6915390509%2C6438380604%2C8104963187%2C9182074165%2C8282646095%2C8265643674%2C4773199533%2C8286981864%2C8517732076%2C4795490095%2C7614890646%2C5673344986%26g%3D%22%2C%22n%3Dhttp%253A%252F%252Fwww.ufc.ca%252Fmedia%252FSubmission-of-the-Week-Mickey-Gall-vs-Mike-Jackson%26u%3Doeu1513383432864r0.3440539361011914%26wxhr%3Dtrue%26time%3D1513383432.972%26f%3D3444161321%2C6727930006%2C5737351521%2C9416284852%2C7632071432%2C7099050768%2C8360350502%2C9259950934%2C8268964702%2C8318243746%2C6915390509%2C6438380604%2C8104963187%2C9182074165%2C8282646095%2C8265643674%2C4773199533%2C8286981864%2C8517732076%2C4795490095%2C7614890646%2C5673344986%26g%3D%22%5D', '%5B%22n%3Dhttp%253A%252F%252Fwww.ufc.ca%252Fmedia%252FSubmission-of-the-Week-Mickey-Gall-vs-Mike-Jackson%26u%3Doeu1513383432864r0.3440539361011914%26wxhr%3Dtrue%26time%3D1513383433.214%26f%3D3444161321%2C6727930006%2C5737351521%2C9416284852%2C7632071432%2C7099050768%2C8360350502%2C9259950934%2C8268964702%2C8318243746%2C6915390509%2C6438380604%2C8104963187%2C9182074165%2C8282646095%2C8265643674%2C4773199533%2C8286981864%2C8517732076%2C4795490095%2C7614890646%2C5673344986%26g%3D%22%5D', '%5B%22n%3Dhttps%253A%252F%252Fwww.backcountry.com%252Ftravel%253Fshow%253Dall%2526p%253Dgender%25253Amale%25257Cattr_age%25253Aadult%2526nf%253D12%26u%3Doeu1513462964301r0.7533802894431869%26wxhr%3Dtrue%26time%3D1513462964.514%26f%3D3742381551%2C8562702335%2C9265259140%2C9498760971%2C4991340176%2C8254700250%2C9730431536%2C8900261813%2C9410044345%2C9415191869%2C8673032514%2C8635665736%2C8448495692%2C8300882637%2C9438235094%2C8787772766%2C9725932650%2C8891911921%2C9740171379%26g%3D9265259140%2C9410044345%2C9415191869%2C8635665736%2C9438235094%2C8787772766%22%5D', '%5B%22n%3Dhttps%253A%252F%252Fwww.backcountry.com%252Ftravel%253Fshow%253Dall%2526p%253Dgender%25253Amale%25257Cattr_age%25253Aadult%2526nf%253D12%26u%3Doeu1513462964301r0.7533802894431869%26wxhr%3Dtrue%26time%3D1513462964.819%26f%3D3742381551%2C8562702335%2C9265259140%2C9498760971%2C4991340176%2C8254700250%2C9730431536%2C8900261813%2C9410044345%2C9415191869%2C8673032514%2C8635665736%2C8448495692%2C8300882637%2C9438235094%2C8787772766%2C9725932650%2C8891911921%2C9740171379%26g%3D9265259140%2C9410044345%2C9415191869%2C8635665736%2C9438235094%2C8787772766%22%2C%22n%3Dhttps%253A%252F%252Fwww.backcountry.com%252Ftravel%253Fshow%253Dall%2526p%253Dgender%25253Amale%25257Cattr_age%25253Aadult%2526nf%253D12%26u%3Doeu1513462964301r0.7533802894431869%26wxhr%3Dtrue%26time%3D1513462964.514%26f%3D3742381551%2C8562702335%2C9265259140%2C9498760971%2C4991340176%2C8254700250%2C9730431536%2C8900261813%2C9410044345%2C9415191869%2C8673032514%2C8635665736%2C8448495692%2C8300882637%2C9438235094%2C8787772766%2C9725932650%2C8891911921%2C9740171379%26g%3D9265259140%2C9410044345%2C9415191869%2C8635665736%2C9438235094%2C8787772766%22%5D', '%5B%22n%3Dhttps%253A%252F%252Fwww.backcountry.com%252Ftravel%253Fshow%253Dall%2526p%253Dgender%25253Amale%25257Cattr_age%25253Aadult%2526nf%253D12%26u%3Doeu1513462964301r0.7533802894431869%26wxhr%3Dtrue%26time%3D1513462964.819%26f%3D3742381551%2C8562702335%2C9265259140%2C9498760971%2C4991340176%2C8254700250%2C9730431536%2C8900261813%2C9410044345%2C9415191869%2C8673032514%2C8635665736%2C8448495692%2C8300882637%2C9438235094%2C8787772766%2C9725932650%2C8891911921%2C9740171379%26g%3D9265259140%2C9410044345%2C9415191869%2C8635665736%2C9438235094%2C8787772766%22%5D', '%5B%22n%3Dhttps%253A%252F%252Fwww.officeworks.com.au%252Fshop%252Fofficeworks%252Fc%252Ftechnology%252Fhard-drives-data-storage%252Fcd-dvd-media%252Fdvdplus-rw%26u%3Doeu1513428781017r0.41617656872397024%26wxhr%3Dtrue%26time%3D1513428781.165%26f%3D8287156359%2C8752393351%2C8897981832%2C8284077196%2C8731435564%2C8283607323%2C8728505890%2C8738919078%2C8295260333%2C8844680114%2C8777632053%2C8288276025%2C8636671802%2C8774281279%2C8756274259%2C8282683991%2C8768001885%2C8755214177%2C8289931491%2C8295231339%2C8289811570%26g%3D%22%5D', '%5B%5B%27Direct%2520Load%27%2C%271513462962078%27%5D%5D', '%5B%5B%27Typed%2FBookmarked%27%2C%271513470673210%27%5D%5D', '%5B%5B%27Typed%2FBookmarked%27%2C%271513470673211%27%5D%5D', '%5B%5B%27n%2Fa%27%2C%271513470673213%27%5D%5D', '%5B%5BB%5D%5D', '%5B%5D', '%7B%220%22%3A%7B%22svspr%22%3A%22http%3A%2F%2Frutracker.org%2Fforum%2Fviewforum.php%3Ff%3D2398%22%2C%22svsds%22%3A1%2C%22TejndEEDj%22%3A%2268GQmWR0%2B%22%7D%2C%22C618588%22%3A%7B%22page%22%3A1%2C%22time%22%3A1513376193093%7D%7D', '%7B%220%22%3A%7B%22svspr%22%3A%22http%3A%2F%2Frutracker.org%2Fforum%2Fviewforum.php%3Ff%3D2398%22%2C%22svsds%22%3A1%2C%22TejndEEDj%22%3A%2268GQmWR0%2B%22%7D%2C%22C618588%22%3A%7B%22page%22%3A1%2C%22time%22%3A1513376193609%7D%7D', '%7B%220%22%3A%7B%22svspr%22%3A%22http%3A%2F%2Frutracker.org%2Fforum%2Fviewforum.php%3Ff%3D2398%22%2C%22svsds%22%3A1%2C%22TejndEEDj%22%3A%2268GQmWR0%2B%22%7D%2C%22C618588%22%3A%7B%22page%22%3A1%7D%7D', '%7B%220%22%3A%7B%22svspr%22%3A%22http%3A%2F%2Frutracker.org%2Fforum%2Fviewforum.php%3Ff%3D2398%22%2C%22svsds%22%3A1%7D%2C%22C618588%22%3A%7B%22page%22%3A1%7D%7D', '%7B%220%22%3A%7B%22svspr%22%3A%22http%3A%2F%2Frutracker.org%2Fforum%2Fviewforum.php%3Ff%3D2398%22%7D%2C%22C618588%22%3A%7B%22page%22%3A1%7D%7D', '%7B%220%22%3A%7B%22svspr%22%3A%22http%3A%2F%2Fylx-1.com%2Fbnr_xload.php%3Fsection%3DGrid%26pub%3D317196%26format%3D300x250%26ga%3Dg%26xt%3D151339618177382%26xtt%3D6105494%22%2C%22svsds%22%3A6%2C%22TejndEEDj%22%3A%22V-LLCpL2t%22%7D%2C%22C164367%22%3A%7B%22page%22%3A6%2C%22time%22%3A1513396188259%7D%7D', '%7B%220%22%3A%7B%22svspr%22%3A%22http%3A%2F%2Fylx-1.com%2Fbnr_xload.php%3Fsection%3DGrid%26pub%3D317196%26format%3D300x250%26ga%3Dg%26xt%3D151339618177382%26xtt%3D6105494%22%2C%22svsds%22%3A6%2C%22TejndEEDj%22%3A%22V-LLCpL2t%22%7D%2C%22C164367%22%3A%7B%22page%22%3A7%2C%22time%22%3A1513396188259%7D%7D', '%7B%220%22%3A%7B%22svspr%22%3A%22http%3A%2F%2Fylx-1.com%2Fbnr_xload.php%3Fsection%3DGrid%26pub%3D317196%26format%3D300x250%26ga%3Dg%26xt%3D151339618177382%26xtt%3D6105494%22%2C%22svsds%22%3A7%2C%22TejndEEDj%22%3A%22V-LLCpL2t%22%7D%2C%22C164367%22%3A%7B%22page%22%3A7%2C%22time%22%3A1513396188259%7D%7D', '%7B%220%22%3A%7B%22svspr%22%3A%22http%3A%2F%2Fylx-1.com%2Fbnr_xload.php%3Fsection%3DGrid%26pub%3D317196%26format%3D300x250%26ga%3Dg%26xt%3D151339618177382%26xtt%3D6105494%22%2C%22svsds%22%3A7%2C%22TejndEEDj%22%3A%22V-LLCpL2t%22%7D%2C%22C164367%22%3A%7B%22page%22%3A7%2C%22time%22%3A1513396188804%7D%7D', '%7B%220%22%3A%7B%22svspr%22%3A%22http%3A%2F%2Fylx-1.com%2Fbnr_xload.php%3Fsection%3DGrid%26pub%3D317196%26format%3D300x250%26ga%3Dg%26xt%3D151339618177382%26xtt%3D6105494%22%2C%22svsds%22%3A7%2C%22TejndEEDj%22%3A%22V-LLCpL2t%22%7D%2C%22C164367%22%3A%7B%22page%22%3A7%2C%22time%22%3A1513396188950%7D%7D', '%7B%220%22%3A%7B%7D%2C%22C618588%22%3A%7B%22page%22%3A1%7D%7D', '%7B%22166657440%22%3A%22direct%22%2C%22167269864%22%3A%22ff%22%2C%22167331284%22%3A%22false%22%2C%22167479343%22%3A%22none%22%7D', '%7B%223519232639%22%3A%22false%22%2C%223523031494%22%3A%22direct%22%2C%223536961287%22%3A%22ff%22%2C%223542780199%22%3A%22none%22%2C%227527430098%22%3A%22true%22%7D', '%7B%22541151235%22%3A%22false%22%2C%22541533718%22%3A%22true%22%2C%22546991123%22%3A%22none%22%2C%22548391149%22%3A%22ff%22%2C%22549531158%22%3A%22direct%22%2C%22772747613%22%3A%22true%22%7D', '%7B%22541151235%22%3A%22false%22%2C%22541533718%22%3A%22true%22%2C%22546991123%22%3A%22none%22%2C%22548391149%22%3A%22ff%22%2C%22549531158%22%3A%22direct%22%7D', '%7B%22541151235%22%3A%22false%22%2C%22546991123%22%3A%22none%22%2C%22548391149%22%3A%22ff%22%2C%22549531158%22%3A%22direct%22%7D', '%7B%225744581169%22%3A%22ff%22%2C%225745361162%22%3A%22direct%22%2C%225748261093%22%3A%22false%22%7D', '%7B%229265259140%22%3A%229267536273%22%2C%229410044345%22%3A%229438555056%22%2C%229415191869%22%3A%229415542154%22%2C%228635665736%22%3A%228669834223%22%2C%229438235094%22%3A%229463111728%22%2C%228787772766%22%3A%229418281706%22%7D', '%7B%22close%22%3Afalse%2C%22stayDate%22%3A%7B%22startTime%22%3A1513405802%2C%22endTime%22%3A1513405802%7D%2C%22video%22%3A%5B%7B%7D%5D%2C%22dataTy%22%3A6%2C%22isData%22%3Atrue%2C%22isInitShow%22%3Afalse%2C%22data%22%3A%7B%22text%22%3A%22%u54A6%uFF1F%u53D1%u73B0%u4E2A%u5927%u795E%uFF0C%u8D76%u7D27%u7C89%u4E00%u4E0B%u5427%uFF01%22%2C%22name%22%3A%22%u7C89Ta%22%2C%22url%22%3A%22http%3A//www.aipai.com/login.php%22%2C%22leftName%22%3A%22%22%2C%22leftUrl%22%3A%22%22%2C%22rightName%22%3A%22%22%2C%22rightUrl%22%3A%22%22%7D%7D', '%7B%22close%22%3Afalse%2C%22stayDate%22%3A%7B%22startTime%22%3A1513461275%2C%22endTime%22%3A1513461275%7D%2C%22video%22%3A%5B%7B%7D%5D%2C%22dataTy%22%3A6%2C%22isData%22%3Atrue%2C%22isInitShow%22%3Afalse%2C%22data%22%3A%7B%22text%22%3A%22%u54A6%uFF1F%u53D1%u73B0%u4E2A%u5927%u795E%uFF0C%u8D76%u7D27%u7C89%u4E00%u4E0B%u5427%uFF01%22%2C%22name%22%3A%22%u7C89Ta%22%2C%22url%22%3A%22http%3A//www.aipai.com/login.php%22%2C%22leftName%22%3A%22%22%2C%22leftUrl%22%3A%22%22%2C%22rightName%22%3A%22%22%2C%22rightUrl%22%3A%22%22%7D%7D', '%7B%22distinct_id%22%3A%20%221605e9ea86c2ad-080bc3c344a1d-38694646-100200-1605e9ea86d15f%22%2C%22%24initial_referrer%22%3A%20%22%24direct%22%2C%22%24initial_referring_domain%22%3A%20%22%24direct%22%7D', '%7B%22distinct_id%22%3A%20%221605e9ea86c2ad-080bc3c344a1d-38694646-100200-1605e9ea86d15f%22%7D', '%7B%22distinct_id%22%3A%20%2216061864f213b7-088c106985a4b08-38694646-100200-16061864f2212b%22%7D', '%7B%22internalAddress%22%3Afalse%2C%22clientIPAddress%22%3A%2235.225.102.11%22%7D', '%7B%22proCode%22%3A%22999999%22%2C%22pro%22%3A%22%22%2C%22cityCode%22%3A%220%22%2C%22city%22%3A%22%22%2C%22dataType%22%3A%22ipJson%22%2C%22expires%22%3A1514753049061%7D', '%7B%22ts%22%3A1513415945871%2C%22d%22%3A%22www.twilio.com%22%2C%22h%22%3A%22%2Fdocs%2Fquickstart%22%7D', '%7B%22userId%22%3A%223781897977038862%22%2C%22pageviewId%22%3A%222459214547709376%22%2C%22sessionId%22%3A%225629903310498919%22%2C%22identity%22%3Anull%2C%22trackerVersion%22%3A%223.0%22%7D', '%7B%7D', '%7COMYWGWZN6NAMNEZRQ2NVQR%3A20180015%3A1%7CI37IYSRXV5BQPJ5KA6V3TL%3A20180015%3A1%7CNKWAOTOZ7VHZPPUDZL7XP3%3A20180015%3A1', \"'auto'\", '*', '*NMB*%7B%22PDP%22%3A%22SOP%22%7D*NMB*', '-', '-1758798782%7CMCIDTS%7C17518%7CMCMID%7C79897830306461992982644328863454725180%7CMCAAMLH-1514075470%7C9%7CMCAAMB-1514075470%7CRKhpRz8krg2tLO6pguXWp5olkAcUniQYPHaMWWgdJ3xzPWQmdj0y%7CMCOPTOUT-1513477870s%7CNONE%7CMCAID%7CNONE', '.', '.1111.com.tw', '.1513383440670.1513383440670.1.CGrfkZDvu04uV2NGlCTPqKaBlfOlA', '.1513402169962.1513402169962.1.8Z5oTDIaQ7xCduz5cDaUz8RDuXGTj', '.1513443720643.1513443720643.1.B9SFRXBj76t0oUZa_qm-Dskt3jc', '.addthis.com', '.au', '.audiojungle.net', '.backcountry.com', '.br', '.com', '.com.au', '.com.br', '.demdex.net', '.disqus.com', '.facebook.com', '.gap.com', '.gartner.com', '.globalsources.com', '.gzt.com', '.komoona.com', '.krxd.net', '.lemonde.fr', '.livelib.ru', '.lolipop.jp', '.newchic.com', '.officeworks.com.au', '.pcauto.com.cn', '.porn555.com', '.pwc.com', '.torrentor.org', '.twilio.com', '.ufc.ca', '.uol.com.br', '.urcosme.com', '.vjav.com', '.www.backcountry.com', '.www.gap.com', '.www.officeworks.com.au', '.zedo.com', '.zona.mobi', '/', '/news', '0', '0.10470421566842614', '0.28708978145057595', '0.33005920285064216', '0.617847525844914', '0.6607566391098963', '0000vg6kawSw60vzUMcR8jDgA_Z:1b8rpfvhv', '008cf7cd-6103-45d8t2', '01842616b31aa6275683cde5a55b989e23c466dab21d85ad61f21e664a1d0198e6cb8b5f6c', '02425674879031897191287503611419073103', '032|||', '047|||', '04e4adf37ffcbe95bf074adf5cbd1d1b', '075590de-b67f-4d8b-bfee-3bbda58fac1a', '098%23E1hv29vUvbpvUvCkvvvvvjiPPLMp6jtRPsSO6jrCPmPyzj3nR2zpljE2PsM9lj1PvphvC9vhvvCvpvyCvhQpDewvC0RvQRAn%2BbyDCaLIAXZTKFEw9ExrA8TJOymQD7zZditk2b0BkbmAdcZIYExrl8TxO9wtkbmD5dUfb5cG0Wp4ezibAW2w0COqkphvC9QvvpHlBTyCvv9vvUvQUji4DfyCvm9vvvvvphvvvvvv9krvpvFevvmm86Cv2vvvvUUdphvWvvvv9krvpvQv2QhvCvvvMMGtvpvhvvvvv8wCvvpvvUmm', '09c5858a-013d-425d-9f59-451332d6a349', '0:1513444724', '0FF010C18A9DD8D15614FA2FE581A5F3:FG', '0_9_1513421093124', '0bcc281d-ac00-4813-beac-780d7c99f4ba', '0|', '1', '1%7C50', '1.08584058945a34a736c27e4040940978.51163745.1513400118.1513400118.1.2424041624', '1020x697', '104.91.167.61.286351513400109936', '10508', '1099438348%7CMCIDTS%7C17517%7CMCMID%7C02216885986240661824536104730553043660%7CMCAAMLH-1514033582%7C9%7CMCAAMB-1514033582%7CRKhpRz8krg2tLO6pguXWp5olkAcUniQYPHaMWWgdJ3xzPWQmdj0y%7CMCOPTOUT-1513435982s%7CNONE%7CMCAID%7CNONE%7CvVersion%7C2.1.0', '1099438348%7CMCIDTS%7C17517%7CMCMID%7C02216885986240661824536104730553043660%7CMCAAMLH-1514033582%7C9%7CMCAAMB-1514033582%7CRKhpRz8krg2tLO6pguXWp5olkAcUniQYPHaMWWgdJ3xzPWQmdj0y%7CMCOPTOUT-1513435982s%7CNONE%7CvVersion%7C2.1.0', '1099438348%7CMCIDTS%7C17517%7CMCMID%7C02216885986240661824536104730553043660%7CMCAAMLH-1514033582%7C9%7CMCAAMB-1514033582%7CRKhpRz8krg2tLO6pguXWp5olkAcUniQYPHaMWWgdJ3xzPWQmdj0y%7CvVersion%7C2.1.0', '1099438348%7CMCIDTS%7C17517%7CMCMID%7C02216885986240661824536104730553043660%7CMCAAMLH-1514033582%7C9%7CvVersion%7C2.1.0', '1099438348%7CMCIDTS%7C17517%7CMCMID%7C02216885986240661824536104730553043660%7CvVersion%7C2.1.0', '1099438348%7CMCIDTS%7C17517%7CMCMID%7C07784080925395972524171515210419335075%7CMCAAMLH-1514004915%7C7%7CMCAAMB-1514004915%7CRKhpRz8krg2tLO6pguXWp5olkAcUniQYPHaMWWgdJ3xzPWQmdj0y%7CMCOPTOUT-1513407315s%7CNONE%7CMCAID%7CNONE%7CMCSYNCSOP%7C411-17524%7CvVersion%7C2.1.0', '1099438348%7CMCIDTS%7C17517%7CvVersion%7C2.1.0', '1111.com.tw', '11289-1-1513455609524', '11289-1-1513455609524|269-1-1513455611965', '12!%3a%3a!200000296', '12%7c--%7c200000296%7c--%7cM', '1234', '13002-13068', '1366x697', '147%2C1935%2C', '15-1', '1513389246515-New', '1513389849135', '1513395309168030718', '1513397567', '1513400117658-New', '1513402170654.gnbmamap', '1513402178755783118', '1513402365673799743', '15134048541045233300', '1513404854445', '1513405805', '1513415948785%3B1513415948785%3B1513415948785%3B1%3B1', '15134278635436', '1513428783882-New', '1513429481', '1513429482037', '1513433052669127.0.0.1', '1513433369284|1169552844|1169552844|1513433369284', '1513433369284|direct|none|-|-|0|0|0', '1513433371937968167', '1513433461', '1513443715896zDramnLoZtQKcqIYw61x5zYIAvikO47c', '1513449693675738224', '1513450078727', '1513450778283819542', '1513457052961', '1513457431557#3326:2761629^720', '1513457546', '1513461277', '1513462965625%7C378865%7C1513462965625', '1513462965625.5wp8sudg9q', '1513463163', '1513468717', '1513469206582My6wZYhhmzCu9fmxdVdSBST1Ay5iz0bE', '1513469207002', '1513470673214-New', '1514592000%3A190_191_192%7C1515974400%3A102', '1514592000%3A46_22_21_54%7C1513641600%3A175%7C1513987200%3A15', '1514764800200%26vn%3D1', '1530171851669893', '155%3D414%2C', '156021', '156021:2', '159a383283b5f2ec4a1a29abefa74092807e15f7s%3A2%3A%22cn%22%3B', '16', '1605d26f20210e-0695d718edfc248-38694646-100200-1605d26f208c7', '1605d30a4a69-0491bd4f5afbba8-38694646-100200-1605d30a4aa317', '1605dad2b7a|', '1605e03e62c9-06bca5a88a555b8-38694646-100200-1605e03e62d26', '1605f629402|', '16061525b0a9c-027d02b189adf7-38694646-100200-16061525b0b20c', '160618654f8|', '1640%3D205%2C', '1640%3D205%2C155%3D441%2C', '1640%3D513%2C', '1640%3D513%2C155%3D616%2C', '1655', '1671080117663%26vn%3D1', '168c98ebe06cc890b2d29de347ca3f29', '170527423', '170527423.1.10.1513404178', '170527423.1513404178.1.1.utmcsr', '170527423.887630750.1513404178.1513404178.1513404178.1', '17562', '1803587443762d67f3f58b9566ff78dc1a814367b7b8fe54c628641a418d8642', '1935%2C', '194882738', '194882738.0.10.1513443717', '194882738.1.10.1513443717', '194882738.1333158901.1513443717.1513443717.1513443717.1', '194882738.1513443717.1.1.utmcsr', '194882738.2.9.1513443720511', '1:0:0:0', '1DB8F9B4-44B0-40F0-B870-FE39016DCD04', '1bb55bb91108d3fd1ae1e9ff197018641df5759a', '1pqeidaob0.jba1cztn.768', '2', '2%7C50', '20171216', '20171216110402', '2017121615335021712170352359', '21-1-1513399990244|269-1-1513399990295|411-1-1513399990304|771-1-1513399990325|1083-1-1513399990340|1085-1-1513399990353|1086-1-1513399990378|1087-1-1513399990393|1088-1-1513399990454|903-1-1513399990484|6835-1-1513399990500|19913-1-1513399990511|22052-1-1513399990528|2340-1-1513399990600', '21-1-1513399990244|269-1-1513399990295|411-1-1513399990304|771-1-1513399990325|1083-1-1513399990340|1085-1-1513399990353|1086-1-1513399990378|1087-1-1513399990393|1088-1-1513399990454|903-1-1513399990484|6835-1-1513399990500|19913-1-1513399990511|22052-1-1513399990528|2340-1-1513399990600|992-1-1513400417275', '2180519933', '228141.339009.1513462966', '23120', '237240391582719', '24220906640680750040483739798906118037', '243-1', '247290693|1513433372', '2663010:720', '2669411:720', '27576c14b6db904d1411309c7800e459edac6eabs%3A24%3A%22VPv_%7EJlenOaenEple7B2chgc%22%3B', '2761629:720', '2761860:720', '2DAC6F28EF617FE1-2D22ACA7CF8A99FB', '2fb5724f6fe0d010', '3-1-1513381976522|60-1-1513381976588|843-1-1513381976600|771-1-1513381976617|903-1-1513381976633|1957-1-1513381976647|30646-1-1513381976667|2340-1-1513381976679|82530-1-1513381976828|269-1-1513382332536|420-1-1513382332589|477-1-1513382332609|22052-1-1513382332618', '3.6', '3000', '31536000', '3326,69,29:3326,69,18:3326,69,9:3326,69,14', '3357:1513402168985', '3483n7ufv9phj', '348537cd-a019-4b11-ade2-171b4e253da5', '348vsgrbebh6a', '35.225.68.242', '355637714548491', '35ckkmt2gf97jr', '35ckkmv1qk2dmp', '3691aaba-4e6c-47e5-883b-2ce9d3df893f', '36A0095493FBA0B3-0B75417F9022EBB5', '38386253990137222742242463146169673865', '38eedc4a4d3ee', '3a1m0vldnbf4nearlcr3ldoom5', '4', '40075292424915134287826&ci', '40641725', '40641725.0.10.1513390176', '40641725.0.10.1513428437', '40641725.1.10.1513390176', '40641725.1.10.1513428437', '40641725.1513390176.1.1.utmcsr', '40641725.1513428437.1.1.utmcsr', '40641725.851193016.1513390176.1513390176.1513390176.1', '40641725.91095654.1513428437.1513428437.1513428437.1', '4184971_56_56__56_', '42', '4275350B6D55049D', '48dbdb4d-d727-4681-b727-bdb3e53e367a::2017-12-16 13:23:22', '5', '50372433075%2CP1BVMz1DQVItPlxJUyFMTidELEowND04PFFdVVdIO0ZKIUYvVjxEIiJSfiQh', '541569475|1513433372', '574745027667164', '5a3463b28d02d50f000', '5a35006039196416428c02fc', '5a353c65f96a2d55', '5db439c65cb3fd96a6a8249eb5f87875', '5e2f60ee-e1f1-11e7-83dc-6b81e591c59e', '62cd6620c6d8befe.1513387668.0.1513387668..', '62cd6620c6d8befe.1513387668.1.1513387668.1513387668.', '63BB4E7801E36603-056736A84C07299E', '65~-1~-1~-1~-1~3~3~5~3~3~7~7~|~~|~~|~~|~||||||~|~~|~~|~~|~~|~~|~~|~~|~', '65~1~-1~-1~E~6~6~6~10~10~0~0~|~~|~~|~~|~||||||~|~~|~~|~~|~~|~~|~~|~~|~', '661932_B', '686db0cd16060a1a1105374d3e9', '687989026cda406a5de5ed34195a358100b15db', '68DS8FFXTKYU', '693hmxb8', '693ksyoq', '6A524F13BFB96738.1', '6A524F13BFB96738.1513402168985', '6cab77d-1605cae9390-3debec1b-1', '6f74d2a6-0b3d-481b-bea1-759a41b3c9ec', '6~|~~|~', '6~|~~|~|', '7639673-1605ca5721a-432ae08f-2', '7716', '7728090f1605f0971f55a1cee03', '77380706612190424351467415597760248754', '77l6tpugdoqrprp9njg3oas5h6', '783acda0d7f8bcff64ebde0b7611c80a87ede466d87af00c8bba94bd58c76921fddd408378721832cb8dcdd3e58f54e7:FG', '78458%3A1513462966765', '79638658775618872972654510863233981055', '81E06B01-AFA5-4E19-85DD-BBC9B787BE60', '86a9b0d2898a0119fc29ee18209_1117', '86a9b0d2898a0119fc29ee18209|2_1117', '8d752f6cabb3a8532838c4137b45e9b956d7b89e16bc', '8e606c8ff8f145959bf4d01636ab4deb', '900899', '912688.com', '936256632371663', '960', '9629fb75b20d0f99.1513383434.1.1513383434.1513383434.0ef8f588-52aa-47ed-bfb3-413ca38db0c2', '9fbf8f45965f95794b72794204281e9b', 'A4964173BC8C78E6', 'APgWyjvqQgGCaS8XaKrrlw**~121617', 'AXums6QtaXk|1513464682|1513464682|1', 'ApmZtOcdJz2xZPupfVB5AJscq4xzJo3YnOlktbtOFUA_wrlUA3adqAfR4L1K', 'B8E946CC-4BE7-42A5-AECE-AA4CAAB48D25', 'B9876428137B812E', 'BFA44FDE2B8441B805A1B6C31428D158|||', 'BhdqjABEqKxBOolQs', 'Category', 'ChUIBBINbXlHb29nbGVSdGJJZBgBIAE', 'Christmas%20Huge%20Sale%7C%7Chttps%3A%2F%2Fwww.newchic.com%2F2017xmas.html%3Ficn%3Dseo', 'CvQHBVo0+SIAAAARDL53Aw', 'DPRAlgDx0VAY3yE4B', 'DgyOOy_QM33BanwI3', 'E', 'EB', 'EBS', 'Fri, 01 Jan 2027 00:00:00 GMT', 'Fri, 06 Dec 2019 03:35:09 GMT', 'Fri, 06 Dec 2019 05:29:38 GMT', 'Fri, 06 Dec 2019 14:09:31 GMT', 'Fri, 11 Dec 2037 11:15:42 GMT', 'Fri, 11 Dec 2037 17:23:59 GMT', 'Fri, 11 Jan 2019 23:22:26 GMT', 'Fri, 15 Dec 2017 07:21:30 GMT', 'Fri, 15 Dec 2017 09:19:04 GMT', 'Fri, 15 Dec 2017 09:19:08 GMT', 'Fri, 15 Dec 2017 11:09:01 GMT', 'Fri, 15 Dec 2017 12:20:16 GMT', 'Fri, 15 Dec 2017 22:21:24 GMT', 'Fri, 15 Dec 2017 22:51:20 GMT', 'Fri, 15 Dec 2017 23:07:14 GMT', 'Fri, 15 Dec 2017 23:07:15 GMT', 'Fri, 16 Dec 2022 01:54:06 GMT', 'Fri, 16 Dec 2022 09:19:08 GMT', 'Fri, 16 Dec 2022 20:44:12 GMT', 'Fri, 16 Dec 2022 22:22:42 GMT', 'Fri, 16 Dec 2022 22:51:19 GMT', 'Fri, 16 Mar 2018 00:00:00 GMT', 'Fri, 16 Mar 2018 20:50:33 GMT', 'Fri, 16 Mar 2018 23:58:39 GMT', 'GA1.1.1058986409.1513421798', 'GA1.1.1268656354.1513421798', 'GA1.2.1031382808.1513413006', 'GA1.2.1040682326.1513379175', 'GA1.2.1042429680.1513433368', 'GA1.2.1124516600.1513393935', 'GA1.2.1130168547.1513402169', 'GA1.2.118736450.1513404854', 'GA1.2.1196012687.1513406253', 'GA1.2.122216386.1513439702', 'GA1.2.1255463989.1513382835', 'GA1.2.1371536767.1513415945', 'GA1.2.137254952.1513462965', 'GA1.2.1378366790.1513449693', 'GA1.2.1443966037.1513464904', 'GA1.2.1482760590.1513395309', 'GA1.2.1495712889.1513389247', 'GA1.2.1529712403.1513444727', 'GA1.2.1536650575.1513433058', 'GA1.2.1561513833.1513402176', 'GA1.2.1576119530.1513382835', 'GA1.2.1622241972.1513433056', 'GA1.2.1653971232.1513379175', 'GA1.2.1686485757.1513402176', 'GA1.2.1686976807.1513389247', 'GA1.2.1687044407.1513387667', 'GA1.2.175299040.1513389844', 'GA1.2.181902962.1513376424', 'GA1.2.1845114739.1513413006', 'GA1.2.1884274688.1513383433', 'GA1.2.1903783369.1513404854', 'GA1.2.1956004775.1513439702', 'GA1.2.2023038730.1513449693', 'GA1.2.2028566918.1513450778', 'GA1.2.2028643645.1513415009', 'GA1.2.2085474291.1513433461', 'GA1.2.2130787508.1513402684', 'GA1.2.223550906.1513389844', 'GA1.2.24198987.1513458293', 'GA1.2.273220263.1513380146', 'GA1.2.286218796.1513422942', 'GA1.2.340371240.1513402364', 'GA1.2.358748470.1513433368', 'GA1.2.400749037.1513380146', 'GA1.2.40539010.1513428782', 'GA1.2.417371320.1513404180', 'GA1.2.432777078.1513393935', 'GA1.2.479376169.1513449462', 'GA1.2.557574249.1513402169', 'GA1.2.562489143.1513412596', 'GA1.2.59377561.1513412596', 'GA1.2.632578010.1513402364', 'GA1.2.658787099.1513406253', 'GA1.2.676227111.1513444727', 'GA1.2.690242582.1513376424', 'GA1.2.736860136.1513395309', 'GA1.2.737575190.1513430855', 'GA1.2.741197859.1513450777', 'GA1.2.794143.1513387667', 'GA1.2.797589487.1513464904', 'GA1.2.836804910.1513458293', 'GA1.2.852164597.1513449462', 'GA1.2.861536059.1513422942', 'GA1.2.872345464.1513383433', 'GA1.2.874011214.1513430855', 'GA1.2.874339519.1513415945', 'GA1.2.887630750.1513404178', 'GA1.2.925552915.1513462965', 'GA1.2.946021363.1513415009', 'GA1.2.999510081.1513433461', 'GA1.3.1187942521.1513427867', 'GA1.3.1591620649.1513455893', 'GA1.3.2130787508.1513402684', 'GA1.3.224880732.1513428782', 'GA1.3.262218412.1513455895', 'GA1.3.40539010.1513428782', 'GA1.3.590005703.1513427867', 'GA1.3.945460513.1513402684', 'GA1.3.953361200.1513388291', 'GA1.3.992786905.1513388291', 'GAP', 'GAX1.2.mVYqZ8urTtSvYdSEpXIXuw.17559.0', 'Good', 'I0iBGOBW0FIVb3W4a.Z140qoqBxO5an.5nXZhjHHHNP.B7', 'ID', 'Invalid Date', 'LCAEDLPDELEHGPACGEHECIKFGDHOFDMKCDFFNMGBPMNCBEFHEGCFDDFEOMJHCIKCILGCNEKPPKFCFAAAOCBAOPLICELDDFCFBGNJEKIFJDGKHLMEGAABJBGJMAAOIKFE', 'LrMLseHX', 'M', 'MDOKMPACMCDBDHEOEBBBFAOK', 'MPMALPBCHKPHPFDFMKJKBPIM', 'MTAwMDAwMjMx', 'MjAwMDE1OTgxNA%3d%3d', 'Mon, 05 Oct 2020 20:44:09 GMT', 'Mon, 15 Jan 2018 12:53:04 GMT', 'Mon, 15 Jan 2018 14:09:29 GMT', 'Mon, 15 Jan 2018 17:23:57 GMT', 'Mon, 15 Jan 2018 22:22:45 GMT', 'Mon, 15 Jan 2018 22:22:46 GMT', 'Mon, 15 Jan 2018 22:51:21 GMT', 'Mon, 16 Dec 2019 00:17:13 GMT', 'Mon, 16 Dec 2019 00:17:14 GMT', 'Mon, 16 Dec 2019 01:27:47 GMT', 'Mon, 16 Dec 2019 01:54:05 GMT', 'Mon, 16 Dec 2019 01:54:06 GMT', 'Mon, 16 Dec 2019 02:04:09 GMT', 'Mon, 16 Dec 2019 02:09:35 GMT', 'Mon, 16 Dec 2019 03:35:08 GMT', 'Mon, 16 Dec 2019 05:29:36 GMT', 'Mon, 16 Dec 2019 05:38:04 GMT', 'Mon, 16 Dec 2019 06:37:33 GMT', 'Mon, 16 Dec 2019 08:23:16 GMT', 'Mon, 16 Dec 2019 08:30:14 GMT', 'Mon, 16 Dec 2019 09:19:04 GMT', 'Mon, 16 Dec 2019 09:19:05 GMT', 'Mon, 16 Dec 2019 10:56:37 GMT', 'Mon, 16 Dec 2019 11:15:41 GMT', 'Mon, 16 Dec 2019 11:15:44 GMT', 'Mon, 16 Dec 2019 11:15:45 GMT', 'Mon, 16 Dec 2019 12:47:16 GMT', 'Mon, 16 Dec 2019 12:47:17 GMT', 'Mon, 16 Dec 2019 12:53:01 GMT', 'Mon, 16 Dec 2019 12:53:02 GMT', 'Mon, 16 Dec 2019 12:53:03 GMT', 'Mon, 16 Dec 2019 13:27:35 GMT', 'Mon, 16 Dec 2019 14:04:16 GMT', 'Mon, 16 Dec 2019 14:04:17 GMT', 'Mon, 16 Dec 2019 14:09:28 GMT', 'Mon, 16 Dec 2019 14:11:01 GMT', 'Mon, 16 Dec 2019 15:55:02 GMT', 'Mon, 16 Dec 2019 16:01:29 GMT', 'Mon, 16 Dec 2019 18:37:42 GMT', 'Mon, 16 Dec 2019 21:04:53 GMT', 'Mon, 16 Dec 2019 22:22:43 GMT', 'Mon, 16 Dec 2019 22:22:45 GMT', 'Mon, 16 Dec 2019 22:51:16 GMT', 'Mon, 17 Dec 2018 00:06:47 GMT', 'Mon, 17 Dec 2018 03:35:08 GMT', 'Mon, 17 Dec 2018 05:38:04 GMT', 'Mon, 17 Dec 2018 11:15:42 GMT', 'Mon, 18 Dec 2017 00:31:15 GMT', 'Mon, 22 Nov 2117 22:51:20 GMT', 'Mon, 25 Aug 2031 22:51:21 GMT', 'Mon, 25 Aug 2031 22:51:23 GMT', 'Mon, 30-Nov-2099 08:00:00 GMT', 'MzAzMDFOQVVTR0EyMTM3MDk1NjUyNDA1MjBIVg', 'NANALPBCJFMJLDCODBAGHCHN', 'NTg%3d', 'OTQwMzVOQVVTQ0EyMTc0MDU3OTgwNzc0MDAwTA', 'OTQwMzVOQVVTQ0EyMTc0MDU3OTgwNzc0MDBITA', 'P0-1074891563-1513415947669', 'P0-1414235073-1513380146530', 'P0-422847043-1513464904405', 'P0-922362957-1513402170790', 'PLP%20Cat%3ATravel', 'PLP%20Cat%5EPLP%20Cat%3ATravel', 'QVpPd2IwNHgwRkRPR1pqTkRFek5UUmxZVGRsTjJJd1kyRmhNakZoWmpBNU5EZzFaVGN3WkRnPQc', 'R1djSnUyM3Q2ODRTSVhxTTNxSFlZQTQ3QTZHdFZmTVRVeE16UTFNREEzT0MwME9UZzBORGN0SVRCOE1UVXhNelEwT1RZNU1TMDBPVFkzTnpRdElUQT0b', 'SG', 'Sat, 12 Jan 2019 09:19:07 GMT', 'Sat, 16 Dec 2017 00:17:13 GMT', 'Sat, 16 Dec 2017 00:17:27 GMT', 'Sat, 16 Dec 2017 00:17:28 GMT', 'Sat, 16 Dec 2017 00:18:13 GMT', 'Sat, 16 Dec 2017 00:47:14 GMT', 'Sat, 16 Dec 2017 00:47:20 GMT', 'Sat, 16 Dec 2017 01:28:47 GMT', 'Sat, 16 Dec 2017 01:55:06 GMT', 'Sat, 16 Dec 2017 01:57:48 GMT', 'Sat, 16 Dec 2017 02:09:33 GMT', 'Sat, 16 Dec 2017 02:09:35 GMT', 'Sat, 16 Dec 2017 02:19:35 GMT', 'Sat, 16 Dec 2017 02:24:06 GMT', 'Sat, 16 Dec 2017 02:39:33 GMT', 'Sat, 16 Dec 2017 02:39:35 GMT', 'Sat, 16 Dec 2017 03:34:09 GMT', 'Sat, 16 Dec 2017 03:34:10 GMT', 'Sat, 16 Dec 2017 03:34:11 GMT', 'Sat, 16 Dec 2017 03:36:08 GMT', 'Sat, 16 Dec 2017 03:40:08 GMT', 'Sat, 16 Dec 2017 04:05:08 GMT', 'Sat, 16 Dec 2017 04:35:09 GMT', 'Sat, 16 Dec 2017 04:35:10 GMT', 'Sat, 16 Dec 2017 04:35:11 GMT', 'Sat, 16 Dec 2017 05:28:38 GMT', 'Sat, 16 Dec 2017 05:28:39 GMT', 'Sat, 16 Dec 2017 05:29:36 GMT', 'Sat, 16 Dec 2017 05:30:36 GMT', 'Sat, 16 Dec 2017 05:31:52 GMT', 'Sat, 16 Dec 2017 05:39:04 GMT', 'Sat, 16 Dec 2017 06:08:04 GMT', 'Sat, 16 Dec 2017 06:08:05 GMT', 'Sat, 16 Dec 2017 06:13:28 GMT', 'Sat, 16 Dec 2017 06:29:28 GMT', 'Sat, 16 Dec 2017 06:29:38 GMT', 'Sat, 16 Dec 2017 06:29:39 GMT', 'Sat, 16 Dec 2017 06:32:52 GMT', 'Sat, 16 Dec 2017 06:38:33 GMT', 'Sat, 16 Dec 2017 07:14:28 GMT', 'Sat, 16 Dec 2017 08:24:16 GMT', 'Sat, 16 Dec 2017 08:31:14 GMT', 'Sat, 16 Dec 2017 09:00:08 GMT', 'Sat, 16 Dec 2017 09:19:05 GMT', 'Sat, 16 Dec 2017 09:20:04 GMT', 'Sat, 16 Dec 2017 09:49:05 GMT', 'Sat, 16 Dec 2017 11:15:42 GMT', 'Sat, 16 Dec 2017 11:15:56 GMT', 'Sat, 16 Dec 2017 11:16:41 GMT', 'Sat, 16 Dec 2017 11:25:42 GMT', 'Sat, 16 Dec 2017 11:45:42 GMT', 'Sat, 16 Dec 2017 11:45:43 GMT', 'Sat, 16 Dec 2017 12:15:43 GMT', 'Sat, 16 Dec 2017 12:47:16 GMT', 'Sat, 16 Dec 2017 12:47:17 GMT', 'Sat, 16 Dec 2017 12:53:13 GMT', 'Sat, 16 Dec 2017 12:53:16 GMT', 'Sat, 16 Dec 2017 12:53:17 GMT', 'Sat, 16 Dec 2017 12:54:02 GMT', 'Sat, 16 Dec 2017 12:57:17 GMT', 'Sat, 16 Dec 2017 13:17:16 GMT', 'Sat, 16 Dec 2017 13:17:17 GMT', 'Sat, 16 Dec 2017 13:23:03 GMT', 'Sat, 16 Dec 2017 13:28:35 GMT', 'Sat, 16 Dec 2017 13:53:04 GMT', 'Sat, 16 Dec 2017 14:03:42 GMT', 'Sat, 16 Dec 2017 14:04:16 GMT', 'Sat, 16 Dec 2017 14:05:17 GMT', 'Sat, 16 Dec 2017 14:08:31 GMT', 'Sat, 16 Dec 2017 14:08:34 GMT', 'Sat, 16 Dec 2017 14:08:49 GMT', 'Sat, 16 Dec 2017 14:09:39 GMT', 'Sat, 16 Dec 2017 14:10:28 GMT', 'Sat, 16 Dec 2017 14:12:01 GMT', 'Sat, 16 Dec 2017 14:14:31 GMT', 'Sat, 16 Dec 2017 14:33:29 GMT', 'Sat, 16 Dec 2017 14:34:17 GMT', 'Sat, 16 Dec 2017 14:39:31 GMT', 'Sat, 16 Dec 2017 14:39:34 GMT', 'Sat, 16 Dec 2017 15:09:29 GMT', 'Sat, 16 Dec 2017 15:09:31 GMT', 'Sat, 16 Dec 2017 15:09:34 GMT', 'Sat, 16 Dec 2017 15:09:49 GMT', 'Sat, 16 Dec 2017 15:56:02 GMT', 'Sat, 16 Dec 2017 17:01:57 GMT', 'Sat, 16 Dec 2017 17:02:00 GMT', 'Sat, 16 Dec 2017 17:11:57 GMT', 'Sat, 16 Dec 2017 17:19:47 GMT', 'Sat, 16 Dec 2017 17:31:55 GMT', 'Sat, 16 Dec 2017 17:31:57 GMT', 'Sat, 16 Dec 2017 17:32:00 GMT', 'Sat, 16 Dec 2017 18:38:42 GMT', 'Sat, 16 Dec 2017 18:46:59 GMT', 'Sat, 16 Dec 2017 18:47:00 GMT', 'Sat, 16 Dec 2017 18:58:48 GMT', 'Sat, 16 Dec 2017 19:47:59 GMT', 'Sat, 16 Dec 2017 19:48:00 GMT', 'Sat, 16 Dec 2017 19:59:48 GMT', 'Sat, 16 Dec 2017 20:25:07 GMT', 'Sat, 16 Dec 2017 22:20:24 GMT', 'Sat, 16 Dec 2017 22:22:42 GMT', 'Sat, 16 Dec 2017 22:22:45 GMT', 'Sat, 16 Dec 2017 22:22:55 GMT', 'Sat, 16 Dec 2017 22:22:59 GMT', 'Sat, 16 Dec 2017 22:23:00 GMT', 'Sat, 16 Dec 2017 22:23:45 GMT', 'Sat, 16 Dec 2017 22:52:42 GMT', 'Sat, 16 Dec 2017 22:52:43 GMT', 'Sat, 16 Dec 2017 23:06:14 GMT', 'Sat, 16 Dec 2017 23:06:15 GMT', 'Sat, 16 Dec 2017 23:21:16 GMT', 'Sat, 16 Dec 2017 23:21:19 GMT', 'Sat, 16 Dec 2017 23:22:25 GMT', 'Sat, 16 Dec 2017 23:35:10 GMT', 'Sat, 16 Dec 2017 23:51:21 GMT', 'Sat, 16 Dec 2017 23:51:46 GMT', 'Sat, 16 Jun 2018 02:28:41 GMT', 'Sat, 16 Jun 2018 02:39:17 GMT', 'Sat, 16 Jun 2018 14:09:35 GMT', 'Sat, 23 Dec 2017 01:27:47 GMT', 'Sat, 23 Dec 2017 01:54:09 GMT', 'Sat, 23 Dec 2017 03:35:09 GMT', 'Sat, 23 Dec 2017 10:44:53 GMT', 'Sat, 23 Dec 2017 14:09:29 GMT', 'Sat, 23 Dec 2017 14:09:30 GMT', 'Sat, 23 Dec 2017 14:27:28 GMT', 'Sat, 23 Dec 2017 16:01:30 GMT', 'Sat, 23 Dec 2017 22:22:44 GMT', 'Sat, 23 Dec 2017 22:51:18 GMT', 'Sun, 01 Feb 1970 00:00:00 GMT', 'Sun, 12 Dec 2032 12:53:02 GMT', 'Sun, 13 Jan 2019 01:27:48 GMT', 'Sun, 15 Dec 2019 22:20:24 GMT', 'Sun, 15 Dec 2019 23:06:14 GMT', 'Sun, 15 Dec 2019 23:06:15 GMT', 'Sun, 15 Dec 2019 23:22:25 GMT', 'Sun, 16 Dec 2018 01:54:06 GMT', 'Sun, 16 Dec 2018 04:12:46 GMT', 'Sun, 16 Dec 2018 04:12:47 GMT', 'Sun, 16 Dec 2018 08:30:11 GMT', 'Sun, 16 Dec 2018 09:19:04 GMT', 'Sun, 16 Dec 2018 09:19:05 GMT', 'Sun, 16 Dec 2018 11:15:43 GMT', 'Sun, 16 Dec 2018 12:47:16 GMT', 'Sun, 16 Dec 2018 12:53:03 GMT', 'Sun, 16 Dec 2018 13:04:41 GMT', 'Sun, 16 Dec 2018 13:04:42 GMT', 'Sun, 16 Dec 2018 14:04:17 GMT', 'Sun, 16 Dec 2018 14:11:01 GMT', 'Sun, 16 Dec 2018 15:30:17 GMT', 'Sun, 16 Dec 2018 22:22:45 GMT', 'Sun, 16 Dec 2018 22:22:46 GMT', 'Sun, 16 Dec 2018 22:51:15 GMT', 'Sun, 16 Dec 2018 22:51:17 GMT', 'Sun, 16 Dec 2018 22:51:18 GMT', 'Sun, 16 Dec 2018 22:51:19 GMT', 'Sun, 16 Dec 2018 22:51:20 GMT', 'Sun, 16 Dec 2018 22:51:21 GMT', 'Sun, 16 Sep 2018 00:00:00 GMT', 'Sun, 17 Dec 2017 00:06:47 GMT', 'Sun, 17 Dec 2017 00:06:52 GMT', 'Sun, 17 Dec 2017 00:06:57 GMT', 'Sun, 17 Dec 2017 00:07:02 GMT', 'Sun, 17 Dec 2017 00:17:13 GMT', 'Sun, 17 Dec 2017 00:36:46 GMT', 'Sun, 17 Dec 2017 00:51:20 GMT', 'Sun, 17 Dec 2017 01:27:47 GMT', 'Sun, 17 Dec 2017 01:29:38 GMT', 'Sun, 17 Dec 2017 01:54:06 GMT', 'Sun, 17 Dec 2017 03:35:07 GMT', 'Sun, 17 Dec 2017 03:35:08 GMT', 'Sun, 17 Dec 2017 05:29:36 GMT', 'Sun, 17 Dec 2017 05:38:04 GMT', 'Sun, 17 Dec 2017 06:37:33 GMT', 'Sun, 17 Dec 2017 08:23:16 GMT', 'Sun, 17 Dec 2017 08:30:14 GMT', 'Sun, 17 Dec 2017 08:30:15 GMT', 'Sun, 17 Dec 2017 09:19:04 GMT', 'Sun, 17 Dec 2017 09:19:08 GMT', 'Sun, 17 Dec 2017 09:19:09 GMT', 'Sun, 17 Dec 2017 10:09:36 GMT', 'Sun, 17 Dec 2017 10:22:42 GMT', 'Sun, 17 Dec 2017 10:56:37 GMT', 'Sun, 17 Dec 2017 11:15:41 GMT', 'Sun, 17 Dec 2017 12:53:02 GMT', 'Sun, 17 Dec 2017 13:27:35 GMT', 'Sun, 17 Dec 2017 14:04:17 GMT', 'Sun, 17 Dec 2017 14:09:28 GMT', 'Sun, 17 Dec 2017 14:09:29 GMT', 'Sun, 17 Dec 2017 14:09:30 GMT', 'Sun, 17 Dec 2017 14:11:01 GMT', 'Sun, 17 Dec 2017 15:55:02 GMT', 'Sun, 17 Dec 2017 18:37:42 GMT', 'Sun, 17 Dec 2017 21:04:53 GMT', 'Sun, 17 Dec 2017 22:22:45 GMT', 'Sun, 17 Jun 2018 00:47:17 GMT', 'Sun, 17 Jun 2018 05:01:57 GMT', 'Sun, 17 Jun 2018 05:02:00 GMT', 'Sun, 28 Jan 2018 00:00:00 GMT', 'Sun, 31 Dec 2017 20:44:12 GMT', 'TMC', 'Tg%3d%3d', 'Thu, 01 Jan 1970 00:00:00 GMT', 'Thu, 01 Jan 1970 00:00:00 UTC', 'Thu, 01 Jan 1970 00:00:01 GMT', 'Thu, 10 Jan 2019 17:01:57 GMT', 'Thu, 10 Jan 2019 17:02:00 GMT', 'Thu, 14 Jun 2018 05:00:17 GMT', 'Thu, 14 Jun 2018 17:23:58 GMT', 'Thu, 14 Jun 2018 20:20:09 GMT', 'Thu, 14 Jun 2018 20:20:11 GMT', 'Thu, 14 Jun 2018 23:01:42 GMT', 'Thu, 15 Dec 2022 22:22:45 GMT', 'Thu, 16 Dec 2027 22:22:42 GMT', 'Thu, 17 Jan 2019 17:01:57 GMT', 'Tue, 05 Jun 2018 00:06:48 GMT', 'Tue, 11 Dec 2018 14:09:31 GMT', 'Tue, 11 Dec 2018 14:09:32 GMT', 'Tue, 14 Dec 2027 00:17:12 GMT', 'Tue, 14 Dec 2027 00:17:13 GMT', 'Tue, 14 Dec 2027 11:15:41 GMT', 'Tue, 14 Dec 2027 12:53:01 GMT', 'Tue, 14 Dec 2027 13:28:37 GMT', 'Tue, 14 Dec 2027 14:11:01 GMT', 'Tue, 14 Dec 2027 17:23:56 GMT', 'Tue, 14 Dec 2027 22:22:44 GMT', 'Tue, 14 Dec 2027 22:51:12 GMT', 'Tue, 15 Dec 2020 22:51:20 GMT', 'Tue, 15 Dec 2037 16:10:55 GMT', 'Tue, 15 Jan 2019 00:17:20 GMT', 'Tue, 15 Jan 2019 17:02:00 GMT', 'Tue, 17 Dec 2019 01:41:49 GMT', 'Tue, 19 Dec 2017 14:09:29 GMT', 'Tue, 26 Dec 2017 12:53:02 GMT', 'Typed%2FBookmarked', 'Typed%2FBookmarkedundefinedTyped%2FBookmarkedTyped%2FBookmarked', 'US', 'USD', 'United+States%7CMountain+View', 'UxM2U5MDE5OTYzMWFkNDMz', 'W311', 'WUM1WomDI2-VdYC-Of-B3Q16', 'Wed, 01 Jan 2020 00:00:00 GMT', 'Wed, 14 Feb 2018 14:04:17 GMT', 'Wed, 14 Feb 2018 22:51:16 GMT', 'Wed, 16 Dec 2020 22:22:45 GMT', 'Wed, 16 Jan 2019 00:06:46 GMT', 'Wed, 16 Jan 2019 00:41:00 GMT', 'Wed, 16 Jan 2019 15:58:29 GMT', 'Wed, 16 Jan 2019 15:58:31 GMT', 'Wed, 20 Sep 2062 14:04:17 GMT', 'X11%3a%3aFirefox%3a%3aDesktop', 'XQ6E2juPS3aZ2uD-IhYPCQ', 'Y', 'YES', '[4629979749%3atrue%3afalse%3a0%3aHzEOrSjpCnOUddiU%2bhcpeSslcg0%3d][com.ibm.commerce.context.audit.AuditContext|1513428783426%2d16327][com.ibm.commerce.store.facade.server.context.StoreGeoCodeContext|%2d37%2e81577%26144%2e96356%26%2d33%2e27032%26139%2e20454%26%2d42%2e36122%26150%2e72258][com.ow.context.CustomerLocationContext|%2d37%2e81566%26144%2e96353%2613002%2613068%2610508%26true%2613002%26null%263000%26null][CTXSETNAME|Store][com.ibm.commerce.context.globalization.GlobalizationContext|%2d1%26AUD%26%2d1%26AUD][com.ibm.commerce.catalog.businesscontext.CatalogContext|10551%26null%26false%26false%26false][com.ibm.commerce.context.base.BaseContext|10151%26%2d1002%26%2d1002%26%2d1][com.ibm.commerce.context.experiment.ExperimentContext|null][com.ibm.commerce.context.entitlement.EntitlementContext|10502%2610502%26null%26%2d2000%26null%26null%26null][com.ibm.commerce.giftcenter.context.GiftCenterContext|null%26null%26null]', '[CS]v1|2D1ACE5905030B8A-6000119E200002F3[CE]', '[CS]v1|2D1AD1B3851D118F-4000017000001FD3[CE]', '_current_session_id_51d5312c-5203-42b9-9676-0afbb58947ea', '_gd1513462965629', '_gd1513462965685', '_uet6bf99064', '_uet6ee73800', '_uet877d93c2', '_uet9d366685', '_ueta2f630fd', '_uetb3d87bc7', '_uetba7e73e2', '_uetf3faa5ac', '_vapi1513464679192', 'a56dff1b1605d63c6e30a49de12', 'a8c40ed3f36566e8.1513444727.1.1513444727.1513444727.abd0c627-23d4-4697-a119-f04b485b19a8', 'accurate', 'admaimai.com', 'adtrue.com', 'afe2bd09-641a-40c1-8b19-791e73831f6e', 'anon-1513400118373-1647370211_5274', 'anon-1513464680329-7015299847_6289', 'audiojungle.net', 'b', 'backcountry.com', 'baike.pcauto.com.cn', 'bcee60f4-dfff-4ac9-8061-fc18dafa8f10', 'bongacams.com', 'ca502e0501063488d72d0a2d705a358116caed7', 'cat:', 'cf8db375394846778fa9df02b8430034', 'check#true#1513464964|session#1513464903597-610059#1513466764', 'cinepolis.com', 'cnzz_eid%3D1017219645-1513386939-%26ntime%3D1513386939', 'cnzz_eid%3D1879548065-1513386939-%26ntime%3D1513386939', 'com.au', 'com.tw', 'corportate%20responsibility', 'csun.edu', 'cx%3A2j6niom54r78j38ncmz9vwbjc0%3A1oknkddwx4jok', 'd7a760e11605dd4547eaa671410', 'depaul.edu', 'direct', 'dmid:6896', 'dw:1366&dh:768&pw:1366&ph:768&ist:0', 'eF4FwbENgDAMBMAmFbs8knk7cTZgjWAHiYIOmJ-7stzfc-Uq6hATat16JU3ROiDljd2Z4cdJtBEGTQroI8BpLm7NTeYPbG4RbA', 'eF4VxrENgDAMBMAmFbu85Ffs2NmANRKsSBR0wPyIq65s13ufKaRX0FhV_ps7QgGW59g90nR2A2Mu6IiGpTLAZUFvrTPzA23vEWc', 'eabc502bbe4b4bbab4e29a63fa9bcf3a.1', 'en', 'en-GB', 'en_US|||', 'f78d0134f.a322cfda3_1513404854458', 'false', 'fe5a3832-a801-7328-ec6f-622c24aed2d1', 'ffa5fcfe9864a39f6e40951bda7c0317', 'folha.uol.com.br', 'gap.com', 'garmin.com', 'gartner.com', 'gbCookie2hours', 'globalsources.com', 'gp%3Abrowse%3AGift%20Shop%3ABoys', 'gpv', 'gx%7Cen%7Cindustries%7Ctransportation-logistics.html', 'h_w', 'hld6116515743681702', 'home%5F20171216', 'http://politiken.dk/kultur/boger/art6156600/%C2%BBFolk-har-hjernevasket-sig-selv-til-at-tro-at-det-er-godt-at-st%C3%A5-tidligt-op-om-morgenen-og-g%C3%A5-p%C3%A5-arbejde%C2%AB', 'http://www.912688.com/zhuanti/hht/index.html', 'https%3A%2F%2Flolipop.jp%2Fpartner%2F', 'https%3A%2F%2Fwww.facebook.com%2Flogin.php%3Fskip_api_login%3D1%26api_key%3D966242223397117%26signed_next%3D1%26next%3Dhttps%253A%252F%252Fwww.facebook.com%252Fsharer%252Fsharer.php%253Fu%253Dhttp%25253A%25252F%25252Fwww.color-hex.com%25252F%26cancel_url%3Dhttps%253A%252F%252Fwww.facebook.com%252Fdialog%252Freturn%252Fclose%253Ferror_code%253D4201%2526error_message%253DUser%252Bcanceled%252Bthe%252BDialog%252Bflow%2523_%253D_%26display%3Dpopup%26locale%3Den_US', 'https://www.pwc.com/gx/en/industries/transportation-logistics.html|1513389245166', 'https://www.urcosme.com/beauty_diary/475693/reviews', 'id', 'j33l_DbUIZeCnWjRX', 'jb8y6ed8xc9xdmm3', 'jb8y6edplecqb8u7', 'lastAccessTime', 'leiphone.com', 'lemonde.fr', 'm:0,t:0', 'mobile.ir', 'n', 'newchic.com', 'nuaLH0vvcZQ2hIz1xzp6jToGCDk%3d%0a%3b2017%2d12%2d16+23%3a53%3a03%2e556%5f1513428783426%2d16327%5f10151', 'null', 'oeu1513383432864r0.3440539361011914', 'oeu1513422941589r0.7937037776932795', 'oeu1513428781017r0.41617656872397024', 'oeu1513462964301r0.7533802894431869', 'oeu1513464670189r0.5490705732654261', 'officeworks.com.au', 'ok', 'p116m7', 'p11fgp', 'p11oy6', 'p12rhx', 'prodGridTab_new', 'profile.omnia%3Dc%3Aunk', 'pubmatic.com', 'pwc.com', 'r0S8Es8BZFkCASPhZgsxoTZ4', 'rakuten.com.tw', 'recommend', 'rei%253Ahome%2C16%2C16%2C697%2C1366%2C697%2C1366%2C768%2C1%2CP', 'rei.com', 'right', 'sao_paulo', 'scroll%3A1353*6040-client%3A1353*697-offset%3A1353*6040-screen%3A1366*768', 'session#1513470669860-376784#1513472530|PC#1513470669860-376784.17_49#1514680272', 'session#a081abcfe0654c0983579cc04c989d14#1513401978|PC#a081abcfe0654c0983579cc04c989d14.20_81#1576644917', 'session%3A%3Ablog%3A%3A36e196518790f4343d38a3ce15287948', 'shop_cd', 'stackexchange.com', 'straight', 'sync', 'syracuse.edu', 't', 't.sharethis.com', 'tag%3Dmasturbating-958', 'tatasky.com', 'technology%253Ahard-drives-%2526-data-storage%253Acd-%2F-dvd-media%253Advd%2B%2F-rw', 'technology%253Ahard-drives-%2526-data-storage%253Acd-%2F-dvd-media%253Advd%2B%2F-rw%2C42%2C42%2C697', 'technology%3Ahard-drives-%26-data-storage%3Acd-%2F-dvd-media%3Advd%2B%2F-rw', 'test2', 'testValue', 'tmall.com', 'true', 'tsa:1513462966043.1879750404.6160073.17988484434578955:20171216225246|env:1%7C20180116222246%7C20171216225246%7C1%7C1037845:20181216222246|uid:1513462966042.1859290540.1299078.114380.1878138289:20181216222246|srchist:1037845%3A1%3A20180116222246:20181216222246', 'twilio.com', 'u_vs06a9f73imjb9314vv', 'ufc.ca', 'uid%3D3661738588958%3Av%3D12.0%3Ats%3D1513464680318%3Ahc%3D1', 'undefined', 'unknown#8?B951F852-0C38-4775-BCF0-4F73D93F1D7D&12?12b29764-1021-4ed0-b1fb-b155ca03fca5&15?043a7011-5f83-448c-8fc8-a7243bcf4852&18?7ba686fc-0f73-4b80-b66b-6883f793dff0&20?007423423b0547c1b6796e45389b3f8c&21?B951F852-0C38-4775-BCF0-4F73D93F1D7D&28?3162118835675287300&36?7ba686fc-0f73-4b80-b66b-6883f793dff0&37?12b29764-1021-4ed0-b1fb-b155ca03fca5&41?B951F852-0C38-4775-BCF0-4F73D93F1D7D', 'uol.com.br', 'urcosme.com', 'v', 'v1%3A151338336438887475', 'v_id:01605dad25480014be4e05234b450104400140090086e$_sn:1$_ss:1$_pn:1%3Bexp-session$_st:1513401917796$ses_id:1513400116552%3Bexp-session$vapi_domain:rei.com$_prevpage:rei%3Ahome%3Bexp-1513403717573$_prevtemp:homepage%3Bexp-1513403717579', 'v_id:01606055d1bd00229f90aa74634401044001b0090086e$_sn:1$_ss:0$_st:1513446526870$ses_id:1513444725184%3Bexp-session$_pn:2%3Bexp-session', 'v_id:016061863d3f002d0bae7d3efd5601044003a0090086e', 'v_id:016061863d3f002d0bae7d3efd5601044003a0090086e$_sn:1$_ss:1$_st:1513466475650$ses_id:1513464675650%3Bexp-session$_pn:1%3Bexp-session', 'v_id:016061863d3f002d0bae7d3efd5601044003a0090086e$_sn:1$_ss:1$_st:1513466475650$ses_id:1513464675650%3Bexp-session$_pn:1%3Bexp-session$vapi_domain:gap.com', 'v_id:016061863d3f002d0bae7d3efd5601044003a0090086e$_sn:1$_ss:1$_st:1513466475650$ses_id:1513464675650%3Bexp-session$_pn:1%3Bexp-session$vapi_domain:gap.com$dc_visit:1$dc_event:1%3Bexp-session', 'v_id:016061863d3f002d0bae7d3efd5601044003a0090086e$_sn:1$_ss:1$_st:1513466475650$ses_id:1513464675650%3Bexp-session$_pn:1%3Bexp-session$vapi_domain:gap.com$dc_visit:1$dc_event:1%3Bexp-session$dc_region:us-east-1%3Bexp-session', 'varD', 'vjav.com', 'w', 'webA', 'www.backcountry.com', 'www.globalsources.com', 'www.twilio.com', 'yes', 'youtube.com', 'zhcw.com', 'zhphGrSIBdYyWIB0YhWgm8BO1cLix9K7f_tbgC41sV..t7', 'zona.mobi', '{\"c_id\":3664}', '{}']\n" + ] + } + ], + "source": [ + "cleaned_entries = cleaned_entries.tolist()\n", + "print(cleaned_entries)" + ] + }, + { + "cell_type": "code", + "execution_count": 164, + "metadata": {}, + "outputs": [], + "source": [ + "cleaned_entries = [e for e in cleaned_entries if (len(e) > 5)]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 165, + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "df2 = pd.DataFrame()\n", + "for i in range(len(cleaned_entries)):\n", + " #print(re.escape(cleaned_entries[i]))\n", + " df2 = pd.concat([df2, df[df.arguments.str.contains(re.escape(cleaned_entries[i]), regex = True)]])\n", + "\n", + "#df2 = df[df.arguments.str.contains(re.escape(cleaned_entries[2]), regex = True)]\n", + "#print(re.escape(cleaned_entries[3]))" + ] + }, + { + "cell_type": "code", + "execution_count": 166, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "542" + ] + }, + "execution_count": 166, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(df2)" + ] + }, + { + "cell_type": "code", + "execution_count": 167, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
argumentslocationscript_urlsymbolvaluevalue_1000value_len
3999{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\":{\\\"id\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\",\\\"timeStamp\\\":1513464673371,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673367,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"8779034036\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[{\\\"id\\\":\\\"8217341548\\\"}],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673363}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0},\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\":{\\\"id\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\",\\\"timeStamp\\\":1513464673400,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673399,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"8781681327\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673396}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0},\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\":{\\\"id\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"timeStamp\\\":1513464673428,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673426,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"9112643756\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4000{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\":{\\\"id\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\",\\\"timeStamp\\\":1513464673400,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673399,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"8781681327\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673396}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0},\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\":{\\\"id\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"timeStamp\\\":1513464673428,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673426,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"9112643756\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4001{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\":{\\\"id\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"timeStamp\\\":1513464673428,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673426,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"9112643756\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4239{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4240{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4241{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4245{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4246{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4247{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4248{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4249{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4250{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4251{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4252{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4253{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4254{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4255{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4256{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4257{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4258{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4259{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4260{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4261{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4262{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4263{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4264{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4265{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4266{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4267{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4268{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4269{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4270{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4271{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4272{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4273{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4274{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4275{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4276{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4277{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4278{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4279{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4280{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4281{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4282{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4283{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4284{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4285{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4286{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4287{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4288{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4289{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4290{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4291{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4292{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4293{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4294{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4295{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4296{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4297{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4298{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4299{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4300{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4301{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4302{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4303{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4304{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4305{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4306{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4307{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4308{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4309{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4310{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4311{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4312{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4313{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4350{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4351{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4352{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4357{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4358{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4359{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4360{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4361{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_gap_us_sitewide_excluding_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"cf279663\\\",\\\"tb\\\":1513464678357,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":20}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4362{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0},\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\":{\\\"id\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"timeStamp\\\":1513464678360,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678356,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9065870692\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9065870692\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4363{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4364{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_gap_us_sitewide_excluding_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"cf279663\\\",\\\"tb\\\":1513464678357,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":20}]},{\\\"eb\\\":{\\\"n\\\":\\\"8637140106_coe_approved_gap_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"11d8f48e\\\",\\\"tb\\\":1513464678381,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":21}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4365{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0},\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\":{\\\"id\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"timeStamp\\\":1513464678360,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678356,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9065870692\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9065870692\\\"}},\\\"retryCount\\\":0},\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\":{\\\"id\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"timeStamp\\\":1513464678384,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678380,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9276433148\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9276433148\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4366{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4367{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_gap_us_sitewide_excluding_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"cf279663\\\",\\\"tb\\\":1513464678357,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":20}]},{\\\"eb\\\":{\\\"n\\\":\\\"8637140106_coe_approved_gap_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"11d8f48e\\\",\\\"tb\\\":1513464678381,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":21}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_us_site_not_checkout_or_shopping_bag\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"900b6152\\\",\\\"tb\\\":1513464678406,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":22}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4368{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0},\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\":{\\\"id\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"timeStamp\\\":1513464678360,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678356,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9065870692\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9065870692\\\"}},\\\"retryCount\\\":0},\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\":{\\\"id\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"timeStamp\\\":1513464678384,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678380,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9276433148\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9276433148\\\"}},\\\"retryCount\\\":0},\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\":{\\\"id\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"timeStamp\\\":1513464678409,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678405,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9427490725\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9427490725\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4369{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4370{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9},{\\\"d\\\":1269,\\\"i\\\":23}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_gap_us_sitewide_excluding_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"cf279663\\\",\\\"tb\\\":1513464678357,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":20}]},{\\\"eb\\\":{\\\"n\\\":\\\"8637140106_coe_approved_gap_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"11d8f48e\\\",\\\"tb\\\":1513464678381,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":21}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_us_site_not_checkout_or_shopping_bag\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"900b6152\\\",\\\"tb\\\":1513464678406,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":22}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4371{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0},\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\":{\\\"id\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"timeStamp\\\":1513464678360,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678356,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9065870692\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9065870692\\\"}},\\\"retryCount\\\":0},\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\":{\\\"id\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"timeStamp\\\":1513464678384,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678380,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9276433148\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9276433148\\\"}},\\\"retryCount\\\":0},\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\":{\\\"id\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"timeStamp\\\":1513464678409,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678405,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9427490725\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9427490725\\\"}},\\\"retryCount\\\":0},\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\":{\\\"id\\\":\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\",\\\"timeStamp\\\":1513464678439,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678435,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9823910564\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9823910564\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4372{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.removeItem0
4373{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6},{\\\"d\\\":1519,\\\"i\\\":24}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9},{\\\"d\\\":1269,\\\"i\\\":23}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_gap_us_sitewide_excluding_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"cf279663\\\",\\\"tb\\\":1513464678357,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":20}]},{\\\"eb\\\":{\\\"n\\\":\\\"8637140106_coe_approved_gap_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"11d8f48e\\\",\\\"tb\\\":1513464678381,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":21}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_us_site_not_checkout_or_shopping_bag\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"900b6152\\\",\\\"tb\\\":1513464678406,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":22}]}]\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4374{\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0},\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\":{\\\"id\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"timeStamp\\\":1513464678360,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678356,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9065870692\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9065870692\\\"}},\\\"retryCount\\\":0},\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\":{\\\"id\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"timeStamp\\\":1513464678384,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678380,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9276433148\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9276433148\\\"}},\\\"retryCount\\\":0},\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\":{\\\"id\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"timeStamp\\\":1513464678409,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678405,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9427490725\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9427490725\\\"}},\\\"retryCount\\\":0},\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\":{\\\"id\\\":\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\",\\\"timeStamp\\\":1513464678439,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678435,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9823910564\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9823910564\\\"}},\\\"retryCount\\\":0},\\\"05561ba8-b673-434d-a02f-684b0fff177f\\\":{\\\"id\\\":\\\"05561ba8-b673-434d-a02f-684b0fff177f\\\",\\\"timeStamp\\\":1513464678491,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"05561ba8-b673-434d-a02f-684b0fff177f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678467,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" <span class=\\\\\\\"u-hide-not-en\\\\\\\">Gift Shop</span> <div class=\\\\\\\"plusMinus\\\\\\\"></div> \\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9826790443\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9826790443\\\"}},\\\"retryCount\\\":0}}\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.setItem0
4378{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.getItem0
4379{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$session_state\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.getItem0
4380{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$tracker_optimizely\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.getItem0
4381{\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$events\"}http://www.gap.com/browse/category.do?cid=1096402&sop=truehttp://cdn.optimizely.com/public/6529002483/s/gacat.jswindow.Storage.getItem0
\n", + "
" + ], + "text/plain": [ + " arguments \\\n", + "3999 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\":{\\\"id\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\",\\\"timeStamp\\\":1513464673371,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673367,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"8779034036\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[{\\\"id\\\":\\\"8217341548\\\"}],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673363}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0},\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\":{\\\"id\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\",\\\"timeStamp\\\":1513464673400,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673399,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"8781681327\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673396}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0},\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\":{\\\"id\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"timeStamp\\\":1513464673428,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673426,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"9112643756\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0}}\"} \n", + "4000 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\":{\\\"id\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\",\\\"timeStamp\\\":1513464673400,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673399,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"8781681327\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673396}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0},\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\":{\\\"id\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"timeStamp\\\":1513464673428,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673426,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"9112643756\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0}}\"} \n", + "4001 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\":{\\\"id\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"timeStamp\\\":1513464673428,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/decision\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"decisionId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464673426,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"layerId\\\":\\\"9112643756\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"decisionTicket\\\":{\\\"audiences\\\":[],\\\"bucketingId\\\":\\\"oeu1513464670189r0.5490705732654261\\\"},\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"isGlobalHoldback\\\":false}},\\\"retryCount\\\":0}}\"} \n", + "4239 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4240 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]}]\"} \n", + "4241 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4245 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4246 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]}]\"} \n", + "4247 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4248 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4249 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]}]\"} \n", + "4250 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4251 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4252 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]}]\"} \n", + "4253 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4254 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4255 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]}]\"} \n", + "4256 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4257 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4258 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]}]\"} \n", + "4259 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4260 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4261 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]}]\"} \n", + "4262 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\":{\\\"id\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"timeStamp\\\":1513464676496,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4918f99e-82d2-4111-8754-7e4bc6ae0007\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676402,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"6681470190\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"6681470190\\\"}},\\\"retryCount\\\":0},\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4263 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\":{\\\"id\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"timeStamp\\\":1513464676663,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f9abd689-e290-4f35-9c2b-8302fa6395f9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676649,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8101591141\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8101591141\\\"}},\\\"retryCount\\\":0},\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4264 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4265 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4266 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]}]\"} \n", + "4267 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4268 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4269 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]}]\"} \n", + "4270 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4271 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4272 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]}]\"} \n", + "4273 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4274 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4275 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]}]\"} \n", + "4276 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4277 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4278 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]}]\"} \n", + "4279 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4280 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4281 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]}]\"} \n", + "4282 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\":{\\\"id\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"timeStamp\\\":1513464676747,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"3a3f0773-1d27-43cd-9777-ab52ee71eb15\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676736,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8143070551\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8143070551\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4283 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\":{\\\"id\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"timeStamp\\\":1513464676822,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"61242eb1-e5f2-427c-a68c-f7e54dd77c99\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676805,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8221044382\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8221044382\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4284 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\":{\\\"id\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"timeStamp\\\":1513464676711,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1c865771-67c3-4c69-af40-0445bf5786df\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676704,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8139662276\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8139662276\\\"}},\\\"retryCount\\\":0},\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4285 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\":{\\\"id\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"timeStamp\\\":1513464676890,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"79caf4bd-7e4d-4e96-9ae4-bfbc745954f5\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676847,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8223880094\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8223880094\\\"}},\\\"retryCount\\\":0},\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4286 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\":{\\\"id\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"timeStamp\\\":1513464676957,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"be0660fe-c077-4858-816c-01d38e3f9c72\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464676944,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8229360167\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8229360167\\\"}},\\\"retryCount\\\":0},\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4287 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"8a195516-80de-4831-bab5-622667dd767c\\\":{\\\"id\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"timeStamp\\\":1513464677065,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"8a195516-80de-4831-bab5-622667dd767c\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677052,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8231243985\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8231243985\\\"}},\\\"retryCount\\\":0},\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4288 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\":{\\\"id\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"timeStamp\\\":1513464677112,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"fb3d705e-0987-4749-be9d-06e06799ae97\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677106,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8268651395\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8268651395\\\"}},\\\"retryCount\\\":0},\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4289 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\":{\\\"id\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"timeStamp\\\":1513464677170,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e1c81fe3-adcc-40f1-a8a2-c3d3aea6a442\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677165,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8285619808\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8285619808\\\"}},\\\"retryCount\\\":0},\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4290 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\":{\\\"id\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"timeStamp\\\":1513464677214,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"4b647772-95ae-4017-bd0e-30df436e88f8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677204,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8294281326\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8294281326\\\"}},\\\"retryCount\\\":0},\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4291 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4292 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4293 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]}]\"} \n", + "4294 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4295 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4296 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]}]\"} \n", + "4297 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4298 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4299 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]}]\"} \n", + "4300 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4301 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4302 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]}]\"} \n", + "4303 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4304 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4305 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]}]\"} \n", + "4306 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4307 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4308 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]}]\"} \n", + "4309 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\":{\\\"id\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"timeStamp\\\":1513464677251,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"13a4361a-a8ac-4409-99f0-e6b17ebe0ffc\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677244,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8302161761\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8302161761\\\"}},\\\"retryCount\\\":0},\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4310 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\":{\\\"id\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"timeStamp\\\":1513464677303,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"311e05c6-6cc5-450f-8854-7ca0a00b5010\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677298,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8322822431\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8322822431\\\"}},\\\"retryCount\\\":0},\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4311 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\":{\\\"id\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"timeStamp\\\":1513464677465,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"ebd74d48-4af4-4eda-8507-d7d0ccdfe02f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677460,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8541820430\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8541820430\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4312 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\":{\\\"id\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"timeStamp\\\":1513464677430,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d782c55f-f6eb-4a25-9d4b-f16749608930\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677425,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8330665043\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8330665043\\\"}},\\\"retryCount\\\":0},\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4313 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\":{\\\"id\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"timeStamp\\\":1513464677531,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"d04c621a-1c7c-4a95-909e-e90d05b0ccc3\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677524,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8631696759\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8631696759\\\"}},\\\"retryCount\\\":0},\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4350 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\":{\\\"id\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"timeStamp\\\":1513464677562,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"f757a302-3762-4f31-a39c-4050d25e56c9\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677558,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"8746600679\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"8746600679\\\"}},\\\"retryCount\\\":0},\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4351 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\":{\\\"id\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"timeStamp\\\":1513464677594,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"46ac9130-2847-43fa-b2cb-6d8b16d29ae8\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677590,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9016357235\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9016357235\\\"}},\\\"retryCount\\\":0},\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4352 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\":{\\\"id\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"timeStamp\\\":1513464677627,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1b974dea-58d6-4040-baf5-740ee5946ad2\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464677619,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9022945942\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9022945942\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4357 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4358 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]}]\"} \n", + "4359 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4360 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4361 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_gap_us_sitewide_excluding_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"cf279663\\\",\\\"tb\\\":1513464678357,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":20}]}]\"} \n", + "4362 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0},\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\":{\\\"id\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"timeStamp\\\":1513464678360,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678356,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9065870692\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9065870692\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4363 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4364 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_gap_us_sitewide_excluding_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"cf279663\\\",\\\"tb\\\":1513464678357,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":20}]},{\\\"eb\\\":{\\\"n\\\":\\\"8637140106_coe_approved_gap_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"11d8f48e\\\",\\\"tb\\\":1513464678381,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":21}]}]\"} \n", + "4365 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0},\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\":{\\\"id\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"timeStamp\\\":1513464678360,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678356,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9065870692\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9065870692\\\"}},\\\"retryCount\\\":0},\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\":{\\\"id\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"timeStamp\\\":1513464678384,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678380,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9276433148\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9276433148\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4366 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4367 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_gap_us_sitewide_excluding_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"cf279663\\\",\\\"tb\\\":1513464678357,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":20}]},{\\\"eb\\\":{\\\"n\\\":\\\"8637140106_coe_approved_gap_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"11d8f48e\\\",\\\"tb\\\":1513464678381,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":21}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_us_site_not_checkout_or_shopping_bag\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"900b6152\\\",\\\"tb\\\":1513464678406,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":22}]}]\"} \n", + "4368 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0},\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\":{\\\"id\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"timeStamp\\\":1513464678360,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678356,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9065870692\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9065870692\\\"}},\\\"retryCount\\\":0},\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\":{\\\"id\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"timeStamp\\\":1513464678384,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678380,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9276433148\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9276433148\\\"}},\\\"retryCount\\\":0},\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\":{\\\"id\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"timeStamp\\\":1513464678409,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678405,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9427490725\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9427490725\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4369 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4370 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9},{\\\"d\\\":1269,\\\"i\\\":23}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_gap_us_sitewide_excluding_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"cf279663\\\",\\\"tb\\\":1513464678357,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":20}]},{\\\"eb\\\":{\\\"n\\\":\\\"8637140106_coe_approved_gap_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"11d8f48e\\\",\\\"tb\\\":1513464678381,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":21}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_us_site_not_checkout_or_shopping_bag\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"900b6152\\\",\\\"tb\\\":1513464678406,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":22}]}]\"} \n", + "4371 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0},\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\":{\\\"id\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"timeStamp\\\":1513464678360,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678356,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9065870692\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9065870692\\\"}},\\\"retryCount\\\":0},\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\":{\\\"id\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"timeStamp\\\":1513464678384,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678380,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9276433148\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9276433148\\\"}},\\\"retryCount\\\":0},\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\":{\\\"id\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"timeStamp\\\":1513464678409,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678405,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9427490725\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9427490725\\\"}},\\\"retryCount\\\":0},\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\":{\\\"id\\\":\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\",\\\"timeStamp\\\":1513464678439,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678435,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9823910564\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9823910564\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4372 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$event_queue\"} \n", + "4373 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\",\"1\":\"[{\\\"eb\\\":{\\\"n\\\":\\\"category\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"cid\\\":\\\"1096402\\\",\\\"category_department_selected_division\\\":\\\" Gift Shop
\\\",\\\"category\\\":\\\"Boys\\\"}},\\\"h\\\":\\\"5d4682f\\\",\\\"tb\\\":1513464676413,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":0}]},{\\\"eb\\\":{\\\"n\\\":\\\"all_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"4224f0ec\\\",\\\"tb\\\":1513464676654,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":1}]},{\\\"eb\\\":{\\\"n\\\":\\\"sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"fe6b79cb\\\",\\\"tb\\\":1513464676706,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":2}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapcom_sitewide\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b4363455\\\",\\\"tb\\\":1513464676737,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":3}]},{\\\"eb\\\":{\\\"n\\\":\\\"gap_womens_pants_category_page\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"5ae5bcb1\\\",\\\"tb\\\":1513464676815,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":4}]},{\\\"eb\\\":{\\\"n\\\":\\\"email_category_landing_page_1077349\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c74a0f\\\",\\\"tb\\\":1513464676849,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":5}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\",\\\"o\\\":{\\\"category_departmentcurrent_division\\\":\\\" Gift Shop
\\\"}},\\\"h\\\":\\\"18c8ea83\\\",\\\"tb\\\":1513464676949,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":6},{\\\"d\\\":1519,\\\"i\\\":24}]},{\\\"eb\\\":{\\\"n\\\":\\\"pants_page_single_page_edit\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"b6683a93\\\",\\\"tb\\\":1513464677062,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":7}]},{\\\"eb\\\":{\\\"n\\\":\\\"womens_shorts\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"category\\\"},\\\"h\\\":\\\"6fa8ff9b\\\",\\\"tb\\\":1513464677108,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":8}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excluding_secure_domains\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"d544848d\\\",\\\"tb\\\":1513464677167,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":9},{\\\"d\\\":1269,\\\"i\\\":23}]},{\\\"eb\\\":{\\\"n\\\":\\\"gapus_sitewide_excl_buy__checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"9f449cf6\\\",\\\"tb\\\":1513464677207,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":10}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"647f3d2\\\",\\\"tb\\\":1513464677246,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":11}]},{\\\"eb\\\":{\\\"n\\\":\\\"global_browse_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"8b9c240b\\\",\\\"tb\\\":1513464677299,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":12}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_plat_gp__sop_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"76aa30a0\\\",\\\"tb\\\":1513464677426,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":13}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_ga_us_category_and_division\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"3b0ec4ea\\\",\\\"tb\\\":1513464677461,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":14}]},{\\\"eb\\\":{\\\"n\\\":\\\"Manual_Firing_Men_GQ_Exp\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"f212e8c6\\\",\\\"tb\\\":1513464677525,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":15}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_pdp__sop\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a93d2750\\\",\\\"tb\\\":1513464677559,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":16}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_5\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"a484aff\\\",\\\"tb\\\":1513464677591,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":17}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongausall_pages_2\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"1eece36a\\\",\\\"tb\\\":1513464677620,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":18}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_brongaat_us_all_pages_no_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"c0904f6f\\\",\\\"tb\\\":1513464678327,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":19}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_gap_us_sitewide_excluding_checkout\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"cf279663\\\",\\\"tb\\\":1513464678357,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":20}]},{\\\"eb\\\":{\\\"n\\\":\\\"8637140106_coe_approved_gap_category_pages\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"11d8f48e\\\",\\\"tb\\\":1513464678381,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":21}]},{\\\"eb\\\":{\\\"n\\\":\\\"6529002483_us_site_not_checkout_or_shopping_bag\\\",\\\"y\\\":\\\"pageview\\\",\\\"c\\\":\\\"other\\\"},\\\"h\\\":\\\"900b6152\\\",\\\"tb\\\":1513464678406,\\\"ts\\\":[{\\\"d\\\":0,\\\"i\\\":22}]}]\"} \n", + "4374 {\"0\":\"optimizely_data$$pending_events\",\"1\":\"{\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\":{\\\"id\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"timeStamp\\\":1513464678336,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"64fc4c00-2454-4265-a978-260cd2d073fe\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678326,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9027056489\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9027056489\\\"}},\\\"retryCount\\\":0},\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\":{\\\"id\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"timeStamp\\\":1513464678360,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"a6014da3-ebad-4135-9b9e-2f361248752a\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678356,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9065870692\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9065870692\\\"}},\\\"retryCount\\\":0},\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\":{\\\"id\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"timeStamp\\\":1513464678384,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"54ab9fd3-b258-4bf1-a336-eded0c97d48d\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678380,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9276433148\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9276433148\\\"}},\\\"retryCount\\\":0},\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\":{\\\"id\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"timeStamp\\\":1513464678409,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"e69d5b76-a320-46ec-9080-9a75a9b1c6be\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678405,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9427490725\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9427490725\\\"}},\\\"retryCount\\\":0},\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\":{\\\"id\\\":\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\",\\\"timeStamp\\\":1513464678439,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"1572e1dc-b8eb-4d2c-bb1e-5449b56e2171\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678435,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9823910564\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9823910564\\\"}},\\\"retryCount\\\":0},\\\"05561ba8-b673-434d-a02f-684b0fff177f\\\":{\\\"id\\\":\\\"05561ba8-b673-434d-a02f-684b0fff177f\\\",\\\"timeStamp\\\":1513464678491,\\\"data\\\":{\\\"url\\\":\\\"https://logx.optimizely.com/log/event\\\",\\\"method\\\":\\\"POST\\\",\\\"data\\\":{\\\"eventId\\\":\\\"05561ba8-b673-434d-a02f-684b0fff177f\\\",\\\"anonymizeIP\\\":false,\\\"timestamp\\\":1513464678467,\\\"revision\\\":\\\"6067\\\",\\\"clientEngine\\\":\\\"js\\\",\\\"clientVersion\\\":\\\"0.80.0\\\",\\\"projectId\\\":\\\"8780712086\\\",\\\"accountId\\\":\\\"6529002483\\\",\\\"activationId\\\":\\\"1513464672610\\\",\\\"sessionId\\\":\\\"AUTO\\\",\\\"visitorId\\\":\\\"oeu1513464670189r0.5490705732654261\\\",\\\"eventFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"tags\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}],\\\"eventMetrics\\\":[],\\\"layerStates\\\":[{\\\"layerId\\\":\\\"9725101314\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9726032449\\\",\\\"variationId\\\":\\\"9728633309\\\",\\\"isLayerHoldback\\\":true},\\\"decisionEventId\\\":\\\"41f51314-159c-4ec4-9532-8deb2f2eefb1\\\"},{\\\"layerId\\\":\\\"8938370517\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8923120700\\\",\\\"variationId\\\":\\\"9014701053\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"3a572915-979b-403a-a8a7-c914c1c8e5f6\\\"},{\\\"layerId\\\":\\\"8559781257\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8561583675\\\",\\\"variationId\\\":\\\"8565203249\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"5c7980ab-f4b6-4d13-8c5d-eac35da1f035\\\"},{\\\"layerId\\\":\\\"9257112655\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9260714132\\\",\\\"variationId\\\":\\\"9261314952\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"2a1f2af0-9155-4af5-b439-785b098e86f7\\\"},{\\\"layerId\\\":\\\"8779034036\\\",\\\"decision\\\":{\\\"experimentId\\\":null,\\\"variationId\\\":null,\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"c89a64c4-9bd9-44aa-a4bb-8f60647e95cd\\\"},{\\\"layerId\\\":\\\"8781681327\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"8780850518\\\",\\\"variationId\\\":\\\"8781840473\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ca0b6d20-59b5-479c-b56c-16cc5a07bb8f\\\"},{\\\"layerId\\\":\\\"9112643756\\\",\\\"decision\\\":{\\\"experimentId\\\":\\\"9105733433\\\",\\\"variationId\\\":\\\"9110762213\\\",\\\"isLayerHoldback\\\":false},\\\"decisionEventId\\\":\\\"ea0af661-4830-49bf-b0a7-79e5a4763e59\\\"}],\\\"userFeatures\\\":[{\\\"id\\\":null,\\\"type\\\":\\\"first_session\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":true},{\\\"id\\\":null,\\\"type\\\":\\\"browserId\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"ff\\\"},{\\\"id\\\":\\\"8295478163\\\",\\\"type\\\":\\\"custom\\\",\\\"name\\\":\\\"8295478163\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"www.gap.com\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"device\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"desktop\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"source_type\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":\\\"direct\\\"},{\\\"id\\\":null,\\\"type\\\":\\\"currentTimestamp\\\",\\\"name\\\":\\\"\\\",\\\"shouldIndex\\\":true,\\\"value\\\":1513464673420}],\\\"activeViews\\\":[{\\\"viewId\\\":\\\"6681470190\\\",\\\"activatedTimestamp\\\":1513464672844,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"cid\\\",\\\"value\\\":\\\"1096402\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_department_selected_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category\\\",\\\"value\\\":\\\"Boys\\\"}]},{\\\"viewId\\\":\\\"8101591141\\\",\\\"activatedTimestamp\\\":1513464672853,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8139662276\\\",\\\"activatedTimestamp\\\":1513464672895,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8143070551\\\",\\\"activatedTimestamp\\\":1513464672998,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8221044382\\\",\\\"activatedTimestamp\\\":1513464673116,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8223880094\\\",\\\"activatedTimestamp\\\":1513464673120,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8229360167\\\",\\\"activatedTimestamp\\\":1513464673122,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"8231243985\\\",\\\"activatedTimestamp\\\":1513464673127,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8268651395\\\",\\\"activatedTimestamp\\\":1513464673139,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"}]},{\\\"viewId\\\":\\\"8285619808\\\",\\\"activatedTimestamp\\\":1513464673144,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8294281326\\\",\\\"activatedTimestamp\\\":1513464673159,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8302161761\\\",\\\"activatedTimestamp\\\":1513464673226,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8322822431\\\",\\\"activatedTimestamp\\\":1513464673298,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8330665043\\\",\\\"activatedTimestamp\\\":1513464673301,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8541820430\\\",\\\"activatedTimestamp\\\":1513464673357,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8631696759\\\",\\\"activatedTimestamp\\\":1513464673388,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"8746600679\\\",\\\"activatedTimestamp\\\":1513464673393,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9016357235\\\",\\\"activatedTimestamp\\\":1513464673416,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9022945942\\\",\\\"activatedTimestamp\\\":1513464673417,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9027056489\\\",\\\"activatedTimestamp\\\":1513464673418,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9065870692\\\",\\\"activatedTimestamp\\\":1513464673444,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9276433148\\\",\\\"activatedTimestamp\\\":1513464673492,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9427490725\\\",\\\"activatedTimestamp\\\":1513464673495,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9823910564\\\",\\\"activatedTimestamp\\\":1513464673502,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]},{\\\"viewId\\\":\\\"9826790443\\\",\\\"activatedTimestamp\\\":1513464673503,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"category\\\"},{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_tag\\\",\\\"name\\\":\\\"category_departmentcurrent_division\\\",\\\"value\\\":\\\" Gift Shop
\\\"}]},{\\\"viewId\\\":\\\"9832080211\\\",\\\"activatedTimestamp\\\":1513464673505,\\\"viewFeatures\\\":[{\\\"id\\\":null,\\\"shouldIndex\\\":true,\\\"type\\\":\\\"view_category\\\",\\\"name\\\":\\\"\\\",\\\"value\\\":\\\"other\\\"}]}],\\\"isGlobalHoldback\\\":false,\\\"eventEntityId\\\":\\\"9826790443\\\",\\\"eventType\\\":\\\"view_activated\\\",\\\"eventName\\\":\\\"9826790443\\\"}},\\\"retryCount\\\":0}}\"} \n", + "4378 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$event_queue\"} \n", + "4379 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$session_state\"} \n", + "4380 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$tracker_optimizely\"} \n", + "4381 {\"0\":\"optimizely_data$$oeu1513464670189r0.5490705732654261$$a6529002483$$events\"} \n", + "\n", + " location \\\n", + "3999 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4000 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4001 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4239 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4240 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4241 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4245 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4246 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4247 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4248 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4249 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4250 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4251 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4252 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4253 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4254 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4255 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4256 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4257 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4258 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4259 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4260 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4261 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4262 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4263 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4264 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4265 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4266 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4267 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4268 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4269 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4270 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4271 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4272 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4273 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4274 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4275 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4276 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4277 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4278 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4279 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4280 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4281 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4282 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4283 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4284 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4285 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4286 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4287 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4288 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4289 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4290 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4291 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4292 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4293 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4294 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4295 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4296 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4297 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4298 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4299 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4300 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4301 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4302 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4303 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4304 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4305 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4306 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4307 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4308 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4309 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4310 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4311 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4312 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4313 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4350 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4351 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4352 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4357 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4358 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4359 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4360 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4361 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4362 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4363 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4364 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4365 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4366 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4367 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4368 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4369 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4370 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4371 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4372 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4373 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4374 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4378 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4379 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4380 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "4381 http://www.gap.com/browse/category.do?cid=1096402&sop=true \n", + "\n", + " script_url \\\n", + "3999 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4000 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4001 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4239 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4240 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4241 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4245 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4246 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4247 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4248 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4249 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4250 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4251 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4252 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4253 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4254 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4255 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4256 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4257 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4258 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4259 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4260 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4261 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4262 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4263 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4264 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4265 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4266 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4267 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4268 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4269 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4270 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4271 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4272 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4273 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4274 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4275 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4276 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4277 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4278 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4279 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4280 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4281 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4282 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4283 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4284 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4285 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4286 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4287 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4288 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4289 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4290 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4291 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4292 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4293 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4294 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4295 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4296 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4297 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4298 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4299 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4300 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4301 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4302 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4303 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4304 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4305 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4306 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4307 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4308 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4309 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4310 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4311 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4312 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4313 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4350 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4351 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4352 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4357 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4358 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4359 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4360 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4361 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4362 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4363 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4364 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4365 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4366 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4367 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4368 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4369 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4370 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4371 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4372 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4373 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4374 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4378 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4379 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4380 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "4381 http://cdn.optimizely.com/public/6529002483/s/gacat.js \n", + "\n", + " symbol value value_1000 value_len \n", + "3999 window.Storage.setItem 0 \n", + "4000 window.Storage.setItem 0 \n", + "4001 window.Storage.setItem 0 \n", + "4239 window.Storage.removeItem 0 \n", + "4240 window.Storage.setItem 0 \n", + "4241 window.Storage.setItem 0 \n", + "4245 window.Storage.removeItem 0 \n", + "4246 window.Storage.setItem 0 \n", + "4247 window.Storage.setItem 0 \n", + "4248 window.Storage.removeItem 0 \n", + "4249 window.Storage.setItem 0 \n", + "4250 window.Storage.setItem 0 \n", + "4251 window.Storage.removeItem 0 \n", + "4252 window.Storage.setItem 0 \n", + "4253 window.Storage.setItem 0 \n", + "4254 window.Storage.removeItem 0 \n", + "4255 window.Storage.setItem 0 \n", + "4256 window.Storage.setItem 0 \n", + "4257 window.Storage.removeItem 0 \n", + "4258 window.Storage.setItem 0 \n", + "4259 window.Storage.setItem 0 \n", + "4260 window.Storage.removeItem 0 \n", + "4261 window.Storage.setItem 0 \n", + "4262 window.Storage.setItem 0 \n", + "4263 window.Storage.setItem 0 \n", + "4264 window.Storage.setItem 0 \n", + "4265 window.Storage.removeItem 0 \n", + "4266 window.Storage.setItem 0 \n", + "4267 window.Storage.setItem 0 \n", + "4268 window.Storage.removeItem 0 \n", + "4269 window.Storage.setItem 0 \n", + "4270 window.Storage.setItem 0 \n", + "4271 window.Storage.removeItem 0 \n", + "4272 window.Storage.setItem 0 \n", + "4273 window.Storage.setItem 0 \n", + "4274 window.Storage.removeItem 0 \n", + "4275 window.Storage.setItem 0 \n", + "4276 window.Storage.setItem 0 \n", + "4277 window.Storage.removeItem 0 \n", + "4278 window.Storage.setItem 0 \n", + "4279 window.Storage.setItem 0 \n", + "4280 window.Storage.removeItem 0 \n", + "4281 window.Storage.setItem 0 \n", + "4282 window.Storage.setItem 0 \n", + "4283 window.Storage.setItem 0 \n", + "4284 window.Storage.setItem 0 \n", + "4285 window.Storage.setItem 0 \n", + "4286 window.Storage.setItem 0 \n", + "4287 window.Storage.setItem 0 \n", + "4288 window.Storage.setItem 0 \n", + "4289 window.Storage.setItem 0 \n", + "4290 window.Storage.setItem 0 \n", + "4291 window.Storage.setItem 0 \n", + "4292 window.Storage.removeItem 0 \n", + "4293 window.Storage.setItem 0 \n", + "4294 window.Storage.setItem 0 \n", + "4295 window.Storage.removeItem 0 \n", + "4296 window.Storage.setItem 0 \n", + "4297 window.Storage.setItem 0 \n", + "4298 window.Storage.removeItem 0 \n", + "4299 window.Storage.setItem 0 \n", + "4300 window.Storage.setItem 0 \n", + "4301 window.Storage.removeItem 0 \n", + "4302 window.Storage.setItem 0 \n", + "4303 window.Storage.setItem 0 \n", + "4304 window.Storage.removeItem 0 \n", + "4305 window.Storage.setItem 0 \n", + "4306 window.Storage.setItem 0 \n", + "4307 window.Storage.removeItem 0 \n", + "4308 window.Storage.setItem 0 \n", + "4309 window.Storage.setItem 0 \n", + "4310 window.Storage.setItem 0 \n", + "4311 window.Storage.setItem 0 \n", + "4312 window.Storage.setItem 0 \n", + "4313 window.Storage.setItem 0 \n", + "4350 window.Storage.setItem 0 \n", + "4351 window.Storage.setItem 0 \n", + "4352 window.Storage.setItem 0 \n", + "4357 window.Storage.removeItem 0 \n", + "4358 window.Storage.setItem 0 \n", + "4359 window.Storage.setItem 0 \n", + "4360 window.Storage.removeItem 0 \n", + "4361 window.Storage.setItem 0 \n", + "4362 window.Storage.setItem 0 \n", + "4363 window.Storage.removeItem 0 \n", + "4364 window.Storage.setItem 0 \n", + "4365 window.Storage.setItem 0 \n", + "4366 window.Storage.removeItem 0 \n", + "4367 window.Storage.setItem 0 \n", + "4368 window.Storage.setItem 0 \n", + "4369 window.Storage.removeItem 0 \n", + "4370 window.Storage.setItem 0 \n", + "4371 window.Storage.setItem 0 \n", + "4372 window.Storage.removeItem 0 \n", + "4373 window.Storage.setItem 0 \n", + "4374 window.Storage.setItem 0 \n", + "4378 window.Storage.getItem 0 \n", + "4379 window.Storage.getItem 0 \n", + "4380 window.Storage.getItem 0 \n", + "4381 window.Storage.getItem 0 " + ] + }, + "execution_count": 167, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df2[400:500] #TODO Mujhe \"\" se split karna hai phrr compare karien ge aur arguments bhi check karein ge alag se us mein bhi same scene jo ham ne value ke saath kiya hai phhrr bs submit the analyses\n" + ] + }, + { + "cell_type": "code", + "execution_count": 168, + "metadata": {}, + "outputs": [], + "source": [ + "\n", + " \n", + "def parse_arguments(lst):\n", + " args = {}\n", + " for i in range(len(lst)):\n", + " args[i] = [e.strip('\\\\:,{}=') for e in lst[i].split('\"')]\n", + " return args\n", + "\n", + "args = parse_arguments(df.arguments)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Checking if any of the id is in arguments" + ] + }, + { + "cell_type": "code", + "execution_count": 169, + "metadata": {}, + "outputs": [], + "source": [ + "for i in cleaned_entries:\n", + " for j in args:\n", + " if i==j:\n", + " print(\"Value exists\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.2" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}