2327 строки
237 KiB
Plaintext
2327 строки
237 KiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"# Explore web crawl dataset"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 1,
|
|
"metadata": {
|
|
"collapsed": false
|
|
},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<style>\n",
|
|
"/* \n",
|
|
" * Nicer display for pandas DataFrames.\n",
|
|
" * Inspired from http://blog.henryhhammond.com/pandas-formatting-snippets/#prettytables\n",
|
|
" *\n",
|
|
" * Apply styling to any HTML table. Pandas to_html() returns a table with the \n",
|
|
" * \"dataframe\" class, but using a Styler returns a table with different classes.\n",
|
|
" */\n",
|
|
"\n",
|
|
"/* Lighten the border. */\n",
|
|
"table * {\n",
|
|
" border-color: #c0c0c0 !important;\n",
|
|
"}\n",
|
|
"\n",
|
|
"/* Shading and centering for column headers. */\n",
|
|
"th{\n",
|
|
" background: #eee;\n",
|
|
" text-align: center !important;\n",
|
|
"}\n",
|
|
"\n",
|
|
"/* Index columns should be right-aligned. */\n",
|
|
"tbody th {\n",
|
|
" text-align: right;\n",
|
|
"}\n",
|
|
"\n",
|
|
"/* Shade alternate rows in the table body. */\n",
|
|
"tbody tr {\n",
|
|
" background: #fff;\n",
|
|
"}\n",
|
|
"tbody tr:nth-child(even) {\n",
|
|
" background: #f5fffa;\n",
|
|
"}\n",
|
|
"\n",
|
|
"/* Alignment and sizing for body cells. */\n",
|
|
"td {\n",
|
|
" text-align: right !important;\n",
|
|
" min-width:5em;\n",
|
|
"}\n",
|
|
"\n",
|
|
"</style>"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Updated the display CSS.\n",
|
|
"Patched the pandas module to display with row numbering.\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"import ujson as json\n",
|
|
"import matplotlib.pyplot as plt\n",
|
|
"import pandas as pd\n",
|
|
"import numpy as np\n",
|
|
"import datetime\n",
|
|
"from __future__ import division\n",
|
|
"import feather\n",
|
|
"from collections import defaultdict\n",
|
|
"import sys\n",
|
|
"\n",
|
|
"#%matplotlib inline\n",
|
|
"from IPython.display import display as IPdisplay\n",
|
|
"\n",
|
|
"## Append the path so the mozillametricstools package can be found.\n",
|
|
"## This is included here as a temporary workaround.\n",
|
|
"sys.path.append(\"/home/hadoop/git\")\n",
|
|
"\n",
|
|
"## https://github.com/saptarshiguha/mozillametricstools\n",
|
|
"import mozillametricstools.common.functions as mmt\n",
|
|
"import mozillametricstools.common.s3 as s3fun\n",
|
|
"import mozillametricstools.common.data as mdt\n",
|
|
"import mozillametricstools.users.dzeber.utils as mymmt\n",
|
|
"import mozillametricstools.users.dzeber.display as disp\n",
|
|
"\n",
|
|
"## Shortcut to base S3 location\n",
|
|
"S3_HOME = s3fun.join_s3_path(s3fun.S3_METRICS_HOME_PATH, \"dzeber\")\n",
|
|
"\n",
|
|
"## Make display tweaks for pandas output.\n",
|
|
"disp.prettify_pandas()\n",
|
|
"\n",
|
|
"from moztelemetry.dataset import Dataset\n",
|
|
"from moztelemetry.spark import get_pings_properties\n",
|
|
"from pyspark.sql import Row\n",
|
|
"import pyspark.sql.functions as fun\n",
|
|
"from pyspark.sql.window import Window\n",
|
|
"from pyspark.sql.types import *\n",
|
|
"\n",
|
|
"## If SparkSession `spark` is not pre-defined (as in IPython),\n",
|
|
"## create one from the SparkContext.\n",
|
|
"try:\n",
|
|
" spark.version\n",
|
|
"except NameError:\n",
|
|
" from pyspark.sql import SparkSession\n",
|
|
" spark = SparkSession(sc)\n",
|
|
"\n",
|
|
"## 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)\n",
|
|
"## Wider plots\n",
|
|
"plt.rcParams['figure.figsize'] = (8, 5)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 2,
|
|
"metadata": {
|
|
"collapsed": false
|
|
},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/markdown": [
|
|
"__Last updated: Sun Jan 21 15:07:48 2018__"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.Markdown object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
}
|
|
],
|
|
"source": [
|
|
"disp.time_msg(\"Last updated\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 4,
|
|
"metadata": {
|
|
"collapsed": true
|
|
},
|
|
"outputs": [],
|
|
"source": [
|
|
"DATA_S3_PATH = \"s3://safe-ucosp-2017/\""
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"-----"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 104,
|
|
"metadata": {
|
|
"collapsed": false
|
|
},
|
|
"outputs": [],
|
|
"source": [
|
|
"raw_data = sc.wholeTextFiles(DATA_S3_PATH + \"1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 109,
|
|
"metadata": {
|
|
"collapsed": false
|
|
},
|
|
"outputs": [],
|
|
"source": [
|
|
"def parse_records((filename, data)):\n",
|
|
" \"\"\" Parse JSON objects in data files to a list of dicts.\n",
|
|
" \n",
|
|
" Each file contains a JSON list of objects, although the\n",
|
|
" list is delimited by \"{}\" rather than \"[]\". Split into\n",
|
|
" separate strings for each JSON object and parse.\n",
|
|
" \n",
|
|
" The records in the file are ordered. Add an index\n",
|
|
" field to maintain this, and retain the input file name.\n",
|
|
" \"\"\"\n",
|
|
" ## Split the file contents into a list of records,\n",
|
|
" ## stripping away delimiting braces.\n",
|
|
" ##\n",
|
|
" ## Parsing the entire contents as a JSON list wasn't working.\n",
|
|
" ## Split into separate strings, and parse JSON objects\n",
|
|
" ## individually.\n",
|
|
" data_stripped = data[2:-2]\n",
|
|
" rows = data_stripped.split(\"},{\")\n",
|
|
" ## Add back delimiting braces to reconstruct valid JSON objects.\n",
|
|
" rows_obj = map(lambda s: \"{\" + s + \"}\", rows)\n",
|
|
" parsed_rows = map(json.loads, rows_obj)\n",
|
|
" ## Add indexing field.\n",
|
|
" for i, r in enumerate(parsed_rows):\n",
|
|
" r[\"call_index\"] = i\n",
|
|
" r[\"file_name\"] = filename\n",
|
|
" return parsed_rows\n",
|
|
"\n",
|
|
"\n",
|
|
"def dict_to_row(row_dict):\n",
|
|
" \"\"\" Convert dicts corresponding to individual records to Rows. \"\"\"\n",
|
|
" return Row(\n",
|
|
" location = row_dict.get(\"location\"),\n",
|
|
" call_index = row_dict[\"call_index\"],\n",
|
|
" timestamp = row_dict.get(\"time_stamp\"),\n",
|
|
" script_url = row_dict.get(\"script_url\"),\n",
|
|
" symbol = row_dict.get(\"symbol\"),\n",
|
|
" operation = row_dict.get(\"operation\"),\n",
|
|
" value = row_dict.get(\"value\"),\n",
|
|
" func_name = row_dict.get(\"func_name\"),\n",
|
|
" arguments = row_dict.get(\"arguments\"),\n",
|
|
" script_line = row_dict.get(\"script_line\"),\n",
|
|
" script_col = row_dict.get(\"script_col\"),\n",
|
|
" script_loc_eval = row_dict.get(\"script_loc_eval\"),\n",
|
|
" in_iframe = row_dict.get(\"in_iframe\"),\n",
|
|
" call_stack = row_dict.get(\"call_stack\"),\n",
|
|
" file_name = row_dict[\"file_name\"]\n",
|
|
" )\n",
|
|
"\n",
|
|
"\n",
|
|
"crawl_data_schema = [\n",
|
|
" (\"location\", \"string\"),\n",
|
|
" (\"call_index\", \"integer\"),\n",
|
|
" (\"timestamp\", \"string\"),\n",
|
|
" (\"script_url\", \"string\"),\n",
|
|
" (\"symbol\", \"string\"),\n",
|
|
" (\"operation\", \"string\"),\n",
|
|
" (\"value\", \"string\"),\n",
|
|
" (\"func_name\", \"string\"),\n",
|
|
" (\"arguments\", \"string\"),\n",
|
|
" ## To avoid errors in reading data,\n",
|
|
" ## keep as string for now and convert later.\n",
|
|
" (\"script_line\", \"string\"),\n",
|
|
" (\"script_col\", \"string\"),\n",
|
|
" (\"script_loc_eval\", \"string\"),\n",
|
|
" (\"in_iframe\", \"boolean\"),\n",
|
|
" (\"call_stack\", \"string\"),\n",
|
|
" (\"file_name\", \"string\")\n",
|
|
"]"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 110,
|
|
"metadata": {
|
|
"collapsed": true
|
|
},
|
|
"outputs": [],
|
|
"source": [
|
|
"raw_data_parsed = raw_data.map(parse_records)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 111,
|
|
"metadata": {
|
|
"collapsed": true
|
|
},
|
|
"outputs": [],
|
|
"source": [
|
|
"data_rows = raw_data_parsed.flatMap(lambda r: map(dict_to_row, r))"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 112,
|
|
"metadata": {
|
|
"collapsed": false
|
|
},
|
|
"outputs": [],
|
|
"source": [
|
|
"DF = spark.createDataFrame(data_rows, mymmt.build_schema_from_spec(crawl_data_schema))"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 113,
|
|
"metadata": {
|
|
"collapsed": false
|
|
},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<table border=\"1\" class=\"dataframe\">\n",
|
|
" <thead>\n",
|
|
" <tr style=\"text-align: right;\">\n",
|
|
" <th></th>\n",
|
|
" <th>location</th>\n",
|
|
" <th>call_index</th>\n",
|
|
" <th>timestamp</th>\n",
|
|
" <th>script_url</th>\n",
|
|
" <th>symbol</th>\n",
|
|
" <th>operation</th>\n",
|
|
" <th>value</th>\n",
|
|
" <th>func_name</th>\n",
|
|
" <th>arguments</th>\n",
|
|
" <th>script_line</th>\n",
|
|
" <th>script_col</th>\n",
|
|
" <th>script_loc_eval</th>\n",
|
|
" <th>in_iframe</th>\n",
|
|
" <th>call_stack</th>\n",
|
|
" <th>file_name</th>\n",
|
|
" </tr>\n",
|
|
" </thead>\n",
|
|
" <tbody>\n",
|
|
" <tr>\n",
|
|
" <th>1</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>0</td>\n",
|
|
" <td>2017-12-16T09:04:15.484Z</td>\n",
|
|
" <td>http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js</td>\n",
|
|
" <td>window.navigator.userAgent</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0</td>\n",
|
|
" <td>require<[152]</<</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>159992</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>2</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>2017-12-16T09:04:15.501Z</td>\n",
|
|
" <td>http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js</td>\n",
|
|
" <td>window.document.cookie</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td></td>\n",
|
|
" <td>i</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>349107</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td>i@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:349107\\nrequire<[91]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:349837\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no/<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:317\\nrequire<[85]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:347290\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no/<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:317\\nrequire<[38]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:70801\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no/<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:317\\nrequire<[40]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:68368\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no/<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:317\\nrequire<[33]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:21954\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no/<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:317\\nrequire<[55]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:1638\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:122\\no/<@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:317\\nrequire<[7]<@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:604\\no@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:258\\ne@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:437\\n@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:18</td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>3</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>2</td>\n",
|
|
" <td>2017-12-16T09:04:15.520Z</td>\n",
|
|
" <td>http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>require<[82]</r.get</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>354262</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>4</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>3</td>\n",
|
|
" <td>2017-12-16T09:04:15.521Z</td>\n",
|
|
" <td>http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>require<[82]</r.get</td>\n",
|
|
" <td>{\"0\":\"menu\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>354264</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>5</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>4</td>\n",
|
|
" <td>2017-12-16T09:04:15.526Z</td>\n",
|
|
" <td>http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>require<[82]</r.get</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>354262</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>6</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>5</td>\n",
|
|
" <td>2017-12-16T09:04:15.527Z</td>\n",
|
|
" <td>http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>require<[82]</r.get</td>\n",
|
|
" <td>{\"0\":\"subscriberMenu\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>354264</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>7</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>6</td>\n",
|
|
" <td>2017-12-16T09:04:15.772Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.document.cookie</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td></td>\n",
|
|
" <td>UniqueId/$private.trackUniqueId</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>132791</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td>UniqueId/$private.trackUniqueId@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:132791\\nUniqueId/$public.__constructor<@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:133711\\nUniqueId@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:133589\\nTagManager@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:146487\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:149967\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:2</td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>8</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>7</td>\n",
|
|
" <td>2017-12-16T09:04:15.772Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>UniqueId/$private.trackUniqueId</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>132875</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>9</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>8</td>\n",
|
|
" <td>2017-12-16T09:04:15.773Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>UniqueId/$private.trackUniqueId</td>\n",
|
|
" <td>{\"0\":\"tt_uid\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>132881</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>10</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>9</td>\n",
|
|
" <td>2017-12-16T09:04:15.775Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>11</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>10</td>\n",
|
|
" <td>2017-12-16T09:04:15.784Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>12</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>11</td>\n",
|
|
" <td>2017-12-16T09:04:15.784Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.document.cookie</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td></td>\n",
|
|
" <td>CookieUtils/$public.getItem</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>822</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td>CookieUtils/$public.getItem@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:822\\nTagManager/$private.startTMConsole@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:149671\\nTagManager/$public.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:146683\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:150044\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:2</td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>13</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>12</td>\n",
|
|
" <td>2017-12-16T09:04:15.787Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.document.cookie</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td></td>\n",
|
|
" <td>CookieUtils/$public.getItem</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>822</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td>CookieUtils/$public.getItem@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:822\\nBehaviouralTargeting/$private.getMergeCookies@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:126936\\nBehaviouralTargeting/$public.getBTCookies@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:126758\\nDataLayer/$private.addBT@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:130059\\nDataLayer/$public.createDataLayer@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:128736\\nTagManager/$public.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:146709\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:150044\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:2</td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>14</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>13</td>\n",
|
|
" <td>2017-12-16T09:04:15.787Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.document.cookie</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td></td>\n",
|
|
" <td>CookieUtils/$public.getItem</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>822</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td>CookieUtils/$public.getItem@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:822\\nBehaviouralTargeting/$private.getMergeCookies@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:127010\\nBehaviouralTargeting/$public.getBTCookies@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:126758\\nDataLayer/$private.addBT@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:130059\\nDataLayer/$public.createDataLayer@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:128736\\nTagManager/$public.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:146709\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:150044\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:2</td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>15</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>14</td>\n",
|
|
" <td>2017-12-16T09:04:15.787Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.navigator.doNotTrack</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>unspecified</td>\n",
|
|
" <td>BehaviouralTargeting/$public.getDoNotTrack</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>127657</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>16</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>15</td>\n",
|
|
" <td>2017-12-16T09:04:15.787Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.navigator.doNotTrack</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>unspecified</td>\n",
|
|
" <td>BehaviouralTargeting/$public.getDoNotTrack</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>127952</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>17</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>16</td>\n",
|
|
" <td>2017-12-16T09:04:15.788Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.navigator.doNotTrack</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>unspecified</td>\n",
|
|
" <td>BehaviouralTargeting/$public.getDoNotTrack</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>127952</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>18</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>17</td>\n",
|
|
" <td>2017-12-16T09:04:15.799Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>19</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>18</td>\n",
|
|
" <td>2017-12-16T09:04:15.799Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>20</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>19</td>\n",
|
|
" <td>2017-12-16T09:04:15.805Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131218</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>21</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>20</td>\n",
|
|
" <td>2017-12-16T09:04:15.805Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>{\"0\":\"uolDataLayer\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131234</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>22</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>21</td>\n",
|
|
" <td>2017-12-16T09:04:15.810Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>23</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>22</td>\n",
|
|
" <td>2017-12-16T09:04:15.810Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>24</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>23</td>\n",
|
|
" <td>2017-12-16T09:04:15.811Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131218</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>25</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>24</td>\n",
|
|
" <td>2017-12-16T09:04:15.811Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>{\"0\":\"uolDataLayer\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131234</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>26</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>25</td>\n",
|
|
" <td>2017-12-16T09:04:15.817Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>27</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>26</td>\n",
|
|
" <td>2017-12-16T09:04:15.818Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>28</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>27</td>\n",
|
|
" <td>2017-12-16T09:04:15.818Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131218</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>29</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>28</td>\n",
|
|
" <td>2017-12-16T09:04:15.818Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>{\"0\":\"uolDataLayer\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131234</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>30</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>29</td>\n",
|
|
" <td>2017-12-16T09:04:15.826Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>31</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>30</td>\n",
|
|
" <td>2017-12-16T09:04:15.827Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>32</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>31</td>\n",
|
|
" <td>2017-12-16T09:04:15.828Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131218</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>33</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>32</td>\n",
|
|
" <td>2017-12-16T09:04:15.828Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>{\"0\":\"uolDataLayer\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131234</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>34</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>33</td>\n",
|
|
" <td>2017-12-16T09:04:15.829Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>35</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>34</td>\n",
|
|
" <td>2017-12-16T09:04:15.829Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>36</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>35</td>\n",
|
|
" <td>2017-12-16T09:04:15.830Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131218</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>37</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>36</td>\n",
|
|
" <td>2017-12-16T09:04:15.830Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>{\"0\":\"uolDataLayer\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131234</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>38</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>37</td>\n",
|
|
" <td>2017-12-16T09:04:15.831Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>39</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>38</td>\n",
|
|
" <td>2017-12-16T09:04:15.831Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>40</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>39</td>\n",
|
|
" <td>2017-12-16T09:04:15.834Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>41</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>40</td>\n",
|
|
" <td>2017-12-16T09:04:15.834Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>42</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>41</td>\n",
|
|
" <td>2017-12-16T09:04:15.835Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>43</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>42</td>\n",
|
|
" <td>2017-12-16T09:04:15.835Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>44</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>43</td>\n",
|
|
" <td>2017-12-16T09:04:15.835Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131218</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>45</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>44</td>\n",
|
|
" <td>2017-12-16T09:04:15.835Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>{\"0\":\"uolDataLayer\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131234</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>46</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>45</td>\n",
|
|
" <td>2017-12-16T09:04:15.838Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>47</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>46</td>\n",
|
|
" <td>2017-12-16T09:04:15.838Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>48</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>47</td>\n",
|
|
" <td>2017-12-16T09:04:15.838Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.document.cookie</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td></td>\n",
|
|
" <td>CookieUtils/$public.getItem</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>822</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td>CookieUtils/$public.getItem@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:822\\nIdentify/$public.isOptOutEnabled@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:110029\\nIdentify/$public.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:109441\\nnameSpace.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:115277\\nTagController/$private.activateTag@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:126077\\nTagController/$public.triggerEvents@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:125750\\nTagManager/$private.createModules@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:147449\\nTagManager/$public.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:146975\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:150044\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:2</td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>49</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>48</td>\n",
|
|
" <td>2017-12-16T09:04:15.845Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>Identify/$public.persistData</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>112338</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>50</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>49</td>\n",
|
|
" <td>2017-12-16T09:04:15.845Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.removeItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>Identify/$public.persistData</td>\n",
|
|
" <td>{\"0\":\"tailtarget\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>112338</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>51</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>50</td>\n",
|
|
" <td>2017-12-16T09:04:15.845Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>Identify/$public.persistData</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>112383</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>52</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>51</td>\n",
|
|
" <td>2017-12-16T09:04:15.845Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.removeItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>Identify/$public.persistData</td>\n",
|
|
" <td>{\"0\":\"tailtargettrack\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>112383</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>53</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>52</td>\n",
|
|
" <td>2017-12-16T09:04:15.846Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>54</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>53</td>\n",
|
|
" <td>2017-12-16T09:04:15.846Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>55</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>54</td>\n",
|
|
" <td>2017-12-16T09:04:15.847Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131218</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>56</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>55</td>\n",
|
|
" <td>2017-12-16T09:04:15.847Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>{\"0\":\"uolDataLayer\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131234</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>57</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>56</td>\n",
|
|
" <td>2017-12-16T09:04:15.849Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>58</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>57</td>\n",
|
|
" <td>2017-12-16T09:04:15.849Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>59</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>58</td>\n",
|
|
" <td>2017-12-16T09:04:15.854Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>60</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>59</td>\n",
|
|
" <td>2017-12-16T09:04:15.854Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>61</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>60</td>\n",
|
|
" <td>2017-12-16T09:04:15.854Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131218</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>62</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>61</td>\n",
|
|
" <td>2017-12-16T09:04:15.854Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>DataLayer/$private.hasModuleDataLayer</td>\n",
|
|
" <td>{\"0\":\"uolDataLayer\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>131234</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>63</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>62</td>\n",
|
|
" <td>2017-12-16T09:04:15.855Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>64</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>63</td>\n",
|
|
" <td>2017-12-16T09:04:15.855Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>65</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>64</td>\n",
|
|
" <td>2017-12-16T09:04:15.856Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.localStorage</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>{}</td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>66</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>65</td>\n",
|
|
" <td>2017-12-16T09:04:15.856Z</td>\n",
|
|
" <td>http://tm.jsuol.com.br/uoltm.js?id=mzjgr6</td>\n",
|
|
" <td>window.Storage.getItem</td>\n",
|
|
" <td>call</td>\n",
|
|
" <td></td>\n",
|
|
" <td>TrackManager/$private.isTrackEnabled</td>\n",
|
|
" <td>{\"0\":\"trackManager\"}</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>18904</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>67</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>66</td>\n",
|
|
" <td>2017-12-16T09:04:15.919Z</td>\n",
|
|
" <td>http://www.googletagservices.com/tag/js/gpt.js</td>\n",
|
|
" <td>window.navigator.userAgent</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0</td>\n",
|
|
" <td></td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>1298</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>68</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>67</td>\n",
|
|
" <td>2017-12-16T09:04:16.161Z</td>\n",
|
|
" <td>https://securepubads.g.doubleclick.net/gpt/pubads_impl_170.js</td>\n",
|
|
" <td>window.navigator.userAgent</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0</td>\n",
|
|
" <td></td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>8921</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>69</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>68</td>\n",
|
|
" <td>2017-12-16T09:04:16.163Z</td>\n",
|
|
" <td>https://securepubads.g.doubleclick.net/gpt/pubads_impl_170.js</td>\n",
|
|
" <td>window.navigator.plugins[Shockwave Flash].description</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>Shockwave Flash 28.0 r0</td>\n",
|
|
" <td></td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>30736</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>70</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>69</td>\n",
|
|
" <td>2017-12-16T09:04:16.163Z</td>\n",
|
|
" <td>https://securepubads.g.doubleclick.net/gpt/pubads_impl_170.js</td>\n",
|
|
" <td>window.navigator.plugins[Shockwave Flash].description</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>Shockwave Flash 28.0 r0</td>\n",
|
|
" <td></td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>30752</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>71</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>70</td>\n",
|
|
" <td>2017-12-16T09:04:16.179Z</td>\n",
|
|
" <td>https://securepubads.g.doubleclick.net/gpt/pubads_impl_170.js</td>\n",
|
|
" <td>window.navigator.userAgent</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0</td>\n",
|
|
" <td></td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>65286</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" <tr>\n",
|
|
" <th>72</th>\n",
|
|
" <td>http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es</td>\n",
|
|
" <td>71</td>\n",
|
|
" <td>2017-12-16T09:04:16.196Z</td>\n",
|
|
" <td>https://securepubads.g.doubleclick.net/gpt/pubads_impl_170.js</td>\n",
|
|
" <td>window.navigator.userAgent</td>\n",
|
|
" <td>get</td>\n",
|
|
" <td>Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0</td>\n",
|
|
" <td>_.pm</td>\n",
|
|
" <td>None</td>\n",
|
|
" <td>1</td>\n",
|
|
" <td>71357</td>\n",
|
|
" <td></td>\n",
|
|
" <td>False</td>\n",
|
|
" <td></td>\n",
|
|
" <td>s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json</td>\n",
|
|
" </tr>\n",
|
|
" </tbody>\n",
|
|
"</table>"
|
|
],
|
|
"text/plain": [
|
|
" location \\\n",
|
|
"0 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"1 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"2 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"3 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"4 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"5 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"6 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"7 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"8 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"9 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"10 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"11 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"12 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"13 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"14 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"15 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"16 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"17 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"18 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"19 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"20 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"21 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"22 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"23 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"24 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"25 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"26 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"27 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"28 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"29 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"30 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"31 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"32 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"33 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"34 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"35 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"36 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"37 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"38 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"39 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"40 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"41 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"42 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"43 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"44 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"45 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"46 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"47 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"48 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"49 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"50 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"51 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"52 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"53 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"54 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"55 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"56 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"57 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"58 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"59 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"60 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"61 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"62 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"63 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"64 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"65 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"66 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"67 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"68 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"69 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"70 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"71 http://tc.batepapo.uol.com.br/todas_as_salas.html?theme=/Cidades-e-regi%C3%B5es \n",
|
|
"\n",
|
|
" call_index timestamp \\\n",
|
|
"0 0 2017-12-16T09:04:15.484Z \n",
|
|
"1 1 2017-12-16T09:04:15.501Z \n",
|
|
"2 2 2017-12-16T09:04:15.520Z \n",
|
|
"3 3 2017-12-16T09:04:15.521Z \n",
|
|
"4 4 2017-12-16T09:04:15.526Z \n",
|
|
"5 5 2017-12-16T09:04:15.527Z \n",
|
|
"6 6 2017-12-16T09:04:15.772Z \n",
|
|
"7 7 2017-12-16T09:04:15.772Z \n",
|
|
"8 8 2017-12-16T09:04:15.773Z \n",
|
|
"9 9 2017-12-16T09:04:15.775Z \n",
|
|
"10 10 2017-12-16T09:04:15.784Z \n",
|
|
"11 11 2017-12-16T09:04:15.784Z \n",
|
|
"12 12 2017-12-16T09:04:15.787Z \n",
|
|
"13 13 2017-12-16T09:04:15.787Z \n",
|
|
"14 14 2017-12-16T09:04:15.787Z \n",
|
|
"15 15 2017-12-16T09:04:15.787Z \n",
|
|
"16 16 2017-12-16T09:04:15.788Z \n",
|
|
"17 17 2017-12-16T09:04:15.799Z \n",
|
|
"18 18 2017-12-16T09:04:15.799Z \n",
|
|
"19 19 2017-12-16T09:04:15.805Z \n",
|
|
"20 20 2017-12-16T09:04:15.805Z \n",
|
|
"21 21 2017-12-16T09:04:15.810Z \n",
|
|
"22 22 2017-12-16T09:04:15.810Z \n",
|
|
"23 23 2017-12-16T09:04:15.811Z \n",
|
|
"24 24 2017-12-16T09:04:15.811Z \n",
|
|
"25 25 2017-12-16T09:04:15.817Z \n",
|
|
"26 26 2017-12-16T09:04:15.818Z \n",
|
|
"27 27 2017-12-16T09:04:15.818Z \n",
|
|
"28 28 2017-12-16T09:04:15.818Z \n",
|
|
"29 29 2017-12-16T09:04:15.826Z \n",
|
|
"30 30 2017-12-16T09:04:15.827Z \n",
|
|
"31 31 2017-12-16T09:04:15.828Z \n",
|
|
"32 32 2017-12-16T09:04:15.828Z \n",
|
|
"33 33 2017-12-16T09:04:15.829Z \n",
|
|
"34 34 2017-12-16T09:04:15.829Z \n",
|
|
"35 35 2017-12-16T09:04:15.830Z \n",
|
|
"36 36 2017-12-16T09:04:15.830Z \n",
|
|
"37 37 2017-12-16T09:04:15.831Z \n",
|
|
"38 38 2017-12-16T09:04:15.831Z \n",
|
|
"39 39 2017-12-16T09:04:15.834Z \n",
|
|
"40 40 2017-12-16T09:04:15.834Z \n",
|
|
"41 41 2017-12-16T09:04:15.835Z \n",
|
|
"42 42 2017-12-16T09:04:15.835Z \n",
|
|
"43 43 2017-12-16T09:04:15.835Z \n",
|
|
"44 44 2017-12-16T09:04:15.835Z \n",
|
|
"45 45 2017-12-16T09:04:15.838Z \n",
|
|
"46 46 2017-12-16T09:04:15.838Z \n",
|
|
"47 47 2017-12-16T09:04:15.838Z \n",
|
|
"48 48 2017-12-16T09:04:15.845Z \n",
|
|
"49 49 2017-12-16T09:04:15.845Z \n",
|
|
"50 50 2017-12-16T09:04:15.845Z \n",
|
|
"51 51 2017-12-16T09:04:15.845Z \n",
|
|
"52 52 2017-12-16T09:04:15.846Z \n",
|
|
"53 53 2017-12-16T09:04:15.846Z \n",
|
|
"54 54 2017-12-16T09:04:15.847Z \n",
|
|
"55 55 2017-12-16T09:04:15.847Z \n",
|
|
"56 56 2017-12-16T09:04:15.849Z \n",
|
|
"57 57 2017-12-16T09:04:15.849Z \n",
|
|
"58 58 2017-12-16T09:04:15.854Z \n",
|
|
"59 59 2017-12-16T09:04:15.854Z \n",
|
|
"60 60 2017-12-16T09:04:15.854Z \n",
|
|
"61 61 2017-12-16T09:04:15.854Z \n",
|
|
"62 62 2017-12-16T09:04:15.855Z \n",
|
|
"63 63 2017-12-16T09:04:15.855Z \n",
|
|
"64 64 2017-12-16T09:04:15.856Z \n",
|
|
"65 65 2017-12-16T09:04:15.856Z \n",
|
|
"66 66 2017-12-16T09:04:15.919Z \n",
|
|
"67 67 2017-12-16T09:04:16.161Z \n",
|
|
"68 68 2017-12-16T09:04:16.163Z \n",
|
|
"69 69 2017-12-16T09:04:16.163Z \n",
|
|
"70 70 2017-12-16T09:04:16.179Z \n",
|
|
"71 71 2017-12-16T09:04:16.196Z \n",
|
|
"\n",
|
|
" script_url \\\n",
|
|
"0 http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js \n",
|
|
"1 http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js \n",
|
|
"2 http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js \n",
|
|
"3 http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js \n",
|
|
"4 http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js \n",
|
|
"5 http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js \n",
|
|
"6 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"7 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"8 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"9 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"10 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"11 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"12 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"13 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"14 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"15 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"16 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"17 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"18 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"19 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"20 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"21 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"22 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"23 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"24 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"25 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"26 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"27 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"28 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"29 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"30 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"31 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"32 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"33 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"34 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"35 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"36 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"37 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"38 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"39 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"40 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"41 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"42 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"43 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"44 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"45 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"46 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"47 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"48 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"49 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"50 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"51 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"52 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"53 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"54 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"55 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"56 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"57 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"58 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"59 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"60 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"61 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"62 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"63 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"64 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"65 http://tm.jsuol.com.br/uoltm.js?id=mzjgr6 \n",
|
|
"66 http://www.googletagservices.com/tag/js/gpt.js \n",
|
|
"67 https://securepubads.g.doubleclick.net/gpt/pubads_impl_170.js \n",
|
|
"68 https://securepubads.g.doubleclick.net/gpt/pubads_impl_170.js \n",
|
|
"69 https://securepubads.g.doubleclick.net/gpt/pubads_impl_170.js \n",
|
|
"70 https://securepubads.g.doubleclick.net/gpt/pubads_impl_170.js \n",
|
|
"71 https://securepubads.g.doubleclick.net/gpt/pubads_impl_170.js \n",
|
|
"\n",
|
|
" symbol operation \\\n",
|
|
"0 window.navigator.userAgent get \n",
|
|
"1 window.document.cookie get \n",
|
|
"2 window.localStorage get \n",
|
|
"3 window.Storage.getItem call \n",
|
|
"4 window.localStorage get \n",
|
|
"5 window.Storage.getItem call \n",
|
|
"6 window.document.cookie get \n",
|
|
"7 window.localStorage get \n",
|
|
"8 window.Storage.getItem call \n",
|
|
"9 window.localStorage get \n",
|
|
"10 window.Storage.getItem call \n",
|
|
"11 window.document.cookie get \n",
|
|
"12 window.document.cookie get \n",
|
|
"13 window.document.cookie get \n",
|
|
"14 window.navigator.doNotTrack get \n",
|
|
"15 window.navigator.doNotTrack get \n",
|
|
"16 window.navigator.doNotTrack get \n",
|
|
"17 window.localStorage get \n",
|
|
"18 window.Storage.getItem call \n",
|
|
"19 window.localStorage get \n",
|
|
"20 window.Storage.getItem call \n",
|
|
"21 window.localStorage get \n",
|
|
"22 window.Storage.getItem call \n",
|
|
"23 window.localStorage get \n",
|
|
"24 window.Storage.getItem call \n",
|
|
"25 window.localStorage get \n",
|
|
"26 window.Storage.getItem call \n",
|
|
"27 window.localStorage get \n",
|
|
"28 window.Storage.getItem call \n",
|
|
"29 window.localStorage get \n",
|
|
"30 window.Storage.getItem call \n",
|
|
"31 window.localStorage get \n",
|
|
"32 window.Storage.getItem call \n",
|
|
"33 window.localStorage get \n",
|
|
"34 window.Storage.getItem call \n",
|
|
"35 window.localStorage get \n",
|
|
"36 window.Storage.getItem call \n",
|
|
"37 window.localStorage get \n",
|
|
"38 window.Storage.getItem call \n",
|
|
"39 window.localStorage get \n",
|
|
"40 window.Storage.getItem call \n",
|
|
"41 window.localStorage get \n",
|
|
"42 window.Storage.getItem call \n",
|
|
"43 window.localStorage get \n",
|
|
"44 window.Storage.getItem call \n",
|
|
"45 window.localStorage get \n",
|
|
"46 window.Storage.getItem call \n",
|
|
"47 window.document.cookie get \n",
|
|
"48 window.localStorage get \n",
|
|
"49 window.Storage.removeItem call \n",
|
|
"50 window.localStorage get \n",
|
|
"51 window.Storage.removeItem call \n",
|
|
"52 window.localStorage get \n",
|
|
"53 window.Storage.getItem call \n",
|
|
"54 window.localStorage get \n",
|
|
"55 window.Storage.getItem call \n",
|
|
"56 window.localStorage get \n",
|
|
"57 window.Storage.getItem call \n",
|
|
"58 window.localStorage get \n",
|
|
"59 window.Storage.getItem call \n",
|
|
"60 window.localStorage get \n",
|
|
"61 window.Storage.getItem call \n",
|
|
"62 window.localStorage get \n",
|
|
"63 window.Storage.getItem call \n",
|
|
"64 window.localStorage get \n",
|
|
"65 window.Storage.getItem call \n",
|
|
"66 window.navigator.userAgent get \n",
|
|
"67 window.navigator.userAgent get \n",
|
|
"68 window.navigator.plugins[Shockwave Flash].description get \n",
|
|
"69 window.navigator.plugins[Shockwave Flash].description get \n",
|
|
"70 window.navigator.userAgent get \n",
|
|
"71 window.navigator.userAgent get \n",
|
|
"\n",
|
|
" value \\\n",
|
|
"0 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n",
|
|
"1 \n",
|
|
"2 {} \n",
|
|
"3 \n",
|
|
"4 {} \n",
|
|
"5 \n",
|
|
"6 \n",
|
|
"7 {} \n",
|
|
"8 \n",
|
|
"9 {} \n",
|
|
"10 \n",
|
|
"11 \n",
|
|
"12 \n",
|
|
"13 \n",
|
|
"14 unspecified \n",
|
|
"15 unspecified \n",
|
|
"16 unspecified \n",
|
|
"17 {} \n",
|
|
"18 \n",
|
|
"19 {} \n",
|
|
"20 \n",
|
|
"21 {} \n",
|
|
"22 \n",
|
|
"23 {} \n",
|
|
"24 \n",
|
|
"25 {} \n",
|
|
"26 \n",
|
|
"27 {} \n",
|
|
"28 \n",
|
|
"29 {} \n",
|
|
"30 \n",
|
|
"31 {} \n",
|
|
"32 \n",
|
|
"33 {} \n",
|
|
"34 \n",
|
|
"35 {} \n",
|
|
"36 \n",
|
|
"37 {} \n",
|
|
"38 \n",
|
|
"39 {} \n",
|
|
"40 \n",
|
|
"41 {} \n",
|
|
"42 \n",
|
|
"43 {} \n",
|
|
"44 \n",
|
|
"45 {} \n",
|
|
"46 \n",
|
|
"47 \n",
|
|
"48 {} \n",
|
|
"49 \n",
|
|
"50 {} \n",
|
|
"51 \n",
|
|
"52 {} \n",
|
|
"53 \n",
|
|
"54 {} \n",
|
|
"55 \n",
|
|
"56 {} \n",
|
|
"57 \n",
|
|
"58 {} \n",
|
|
"59 \n",
|
|
"60 {} \n",
|
|
"61 \n",
|
|
"62 {} \n",
|
|
"63 \n",
|
|
"64 {} \n",
|
|
"65 \n",
|
|
"66 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n",
|
|
"67 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n",
|
|
"68 Shockwave Flash 28.0 r0 \n",
|
|
"69 Shockwave Flash 28.0 r0 \n",
|
|
"70 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n",
|
|
"71 Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 \n",
|
|
"\n",
|
|
" func_name arguments \\\n",
|
|
"0 require<[152]</< None \n",
|
|
"1 i None \n",
|
|
"2 require<[82]</r.get None \n",
|
|
"3 require<[82]</r.get {\"0\":\"menu\"} \n",
|
|
"4 require<[82]</r.get None \n",
|
|
"5 require<[82]</r.get {\"0\":\"subscriberMenu\"} \n",
|
|
"6 UniqueId/$private.trackUniqueId None \n",
|
|
"7 UniqueId/$private.trackUniqueId None \n",
|
|
"8 UniqueId/$private.trackUniqueId {\"0\":\"tt_uid\"} \n",
|
|
"9 TrackManager/$private.isTrackEnabled None \n",
|
|
"10 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"11 CookieUtils/$public.getItem None \n",
|
|
"12 CookieUtils/$public.getItem None \n",
|
|
"13 CookieUtils/$public.getItem None \n",
|
|
"14 BehaviouralTargeting/$public.getDoNotTrack None \n",
|
|
"15 BehaviouralTargeting/$public.getDoNotTrack None \n",
|
|
"16 BehaviouralTargeting/$public.getDoNotTrack None \n",
|
|
"17 TrackManager/$private.isTrackEnabled None \n",
|
|
"18 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"19 DataLayer/$private.hasModuleDataLayer None \n",
|
|
"20 DataLayer/$private.hasModuleDataLayer {\"0\":\"uolDataLayer\"} \n",
|
|
"21 TrackManager/$private.isTrackEnabled None \n",
|
|
"22 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"23 DataLayer/$private.hasModuleDataLayer None \n",
|
|
"24 DataLayer/$private.hasModuleDataLayer {\"0\":\"uolDataLayer\"} \n",
|
|
"25 TrackManager/$private.isTrackEnabled None \n",
|
|
"26 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"27 DataLayer/$private.hasModuleDataLayer None \n",
|
|
"28 DataLayer/$private.hasModuleDataLayer {\"0\":\"uolDataLayer\"} \n",
|
|
"29 TrackManager/$private.isTrackEnabled None \n",
|
|
"30 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"31 DataLayer/$private.hasModuleDataLayer None \n",
|
|
"32 DataLayer/$private.hasModuleDataLayer {\"0\":\"uolDataLayer\"} \n",
|
|
"33 TrackManager/$private.isTrackEnabled None \n",
|
|
"34 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"35 DataLayer/$private.hasModuleDataLayer None \n",
|
|
"36 DataLayer/$private.hasModuleDataLayer {\"0\":\"uolDataLayer\"} \n",
|
|
"37 TrackManager/$private.isTrackEnabled None \n",
|
|
"38 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"39 TrackManager/$private.isTrackEnabled None \n",
|
|
"40 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"41 TrackManager/$private.isTrackEnabled None \n",
|
|
"42 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"43 DataLayer/$private.hasModuleDataLayer None \n",
|
|
"44 DataLayer/$private.hasModuleDataLayer {\"0\":\"uolDataLayer\"} \n",
|
|
"45 TrackManager/$private.isTrackEnabled None \n",
|
|
"46 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"47 CookieUtils/$public.getItem None \n",
|
|
"48 Identify/$public.persistData None \n",
|
|
"49 Identify/$public.persistData {\"0\":\"tailtarget\"} \n",
|
|
"50 Identify/$public.persistData None \n",
|
|
"51 Identify/$public.persistData {\"0\":\"tailtargettrack\"} \n",
|
|
"52 TrackManager/$private.isTrackEnabled None \n",
|
|
"53 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"54 DataLayer/$private.hasModuleDataLayer None \n",
|
|
"55 DataLayer/$private.hasModuleDataLayer {\"0\":\"uolDataLayer\"} \n",
|
|
"56 TrackManager/$private.isTrackEnabled None \n",
|
|
"57 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"58 TrackManager/$private.isTrackEnabled None \n",
|
|
"59 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"60 DataLayer/$private.hasModuleDataLayer None \n",
|
|
"61 DataLayer/$private.hasModuleDataLayer {\"0\":\"uolDataLayer\"} \n",
|
|
"62 TrackManager/$private.isTrackEnabled None \n",
|
|
"63 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"64 TrackManager/$private.isTrackEnabled None \n",
|
|
"65 TrackManager/$private.isTrackEnabled {\"0\":\"trackManager\"} \n",
|
|
"66 None \n",
|
|
"67 None \n",
|
|
"68 None \n",
|
|
"69 None \n",
|
|
"70 None \n",
|
|
"71 _.pm None \n",
|
|
"\n",
|
|
" script_line script_col script_loc_eval in_iframe \\\n",
|
|
"0 1 159992 False \n",
|
|
"1 1 349107 False \n",
|
|
"2 1 354262 False \n",
|
|
"3 1 354264 False \n",
|
|
"4 1 354262 False \n",
|
|
"5 1 354264 False \n",
|
|
"6 1 132791 False \n",
|
|
"7 1 132875 False \n",
|
|
"8 1 132881 False \n",
|
|
"9 1 1 False \n",
|
|
"10 1 18904 False \n",
|
|
"11 1 822 False \n",
|
|
"12 1 822 False \n",
|
|
"13 1 822 False \n",
|
|
"14 1 127657 False \n",
|
|
"15 1 127952 False \n",
|
|
"16 1 127952 False \n",
|
|
"17 1 1 False \n",
|
|
"18 1 18904 False \n",
|
|
"19 1 131218 False \n",
|
|
"20 1 131234 False \n",
|
|
"21 1 1 False \n",
|
|
"22 1 18904 False \n",
|
|
"23 1 131218 False \n",
|
|
"24 1 131234 False \n",
|
|
"25 1 1 False \n",
|
|
"26 1 18904 False \n",
|
|
"27 1 131218 False \n",
|
|
"28 1 131234 False \n",
|
|
"29 1 1 False \n",
|
|
"30 1 18904 False \n",
|
|
"31 1 131218 False \n",
|
|
"32 1 131234 False \n",
|
|
"33 1 1 False \n",
|
|
"34 1 18904 False \n",
|
|
"35 1 131218 False \n",
|
|
"36 1 131234 False \n",
|
|
"37 1 1 False \n",
|
|
"38 1 18904 False \n",
|
|
"39 1 1 False \n",
|
|
"40 1 18904 False \n",
|
|
"41 1 1 False \n",
|
|
"42 1 18904 False \n",
|
|
"43 1 131218 False \n",
|
|
"44 1 131234 False \n",
|
|
"45 1 1 False \n",
|
|
"46 1 18904 False \n",
|
|
"47 1 822 False \n",
|
|
"48 1 112338 False \n",
|
|
"49 1 112338 False \n",
|
|
"50 1 112383 False \n",
|
|
"51 1 112383 False \n",
|
|
"52 1 1 False \n",
|
|
"53 1 18904 False \n",
|
|
"54 1 131218 False \n",
|
|
"55 1 131234 False \n",
|
|
"56 1 1 False \n",
|
|
"57 1 18904 False \n",
|
|
"58 1 1 False \n",
|
|
"59 1 18904 False \n",
|
|
"60 1 131218 False \n",
|
|
"61 1 131234 False \n",
|
|
"62 1 1 False \n",
|
|
"63 1 18904 False \n",
|
|
"64 1 1 False \n",
|
|
"65 1 18904 False \n",
|
|
"66 1 1298 False \n",
|
|
"67 1 8921 False \n",
|
|
"68 1 30736 False \n",
|
|
"69 1 30752 False \n",
|
|
"70 1 65286 False \n",
|
|
"71 1 71357 False \n",
|
|
"\n",
|
|
" call_stack \\\n",
|
|
"0 \n",
|
|
"1 i@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:349107\\nrequire<[91]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:349837\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no/<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:317\\nrequire<[85]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:347290\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no/<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:317\\nrequire<[38]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:70801\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no/<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:317\\nrequire<[40]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:68368\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no/<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:317\\nrequire<[33]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:21954\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no/<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:317\\nrequire<[55]<@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:1638\\no@http://jsuol.com.br/c/bp/scripts/common-ea8041229f.js:1:258\\no@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:122\\no/<@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:317\\nrequire<[7]<@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:604\\no@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:258\\ne@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:437\\n@http://jsuol.com.br/c/bp/scripts/all_rooms-788dd7b428.js:1:18 \n",
|
|
"2 \n",
|
|
"3 \n",
|
|
"4 \n",
|
|
"5 \n",
|
|
"6 UniqueId/$private.trackUniqueId@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:132791\\nUniqueId/$public.__constructor<@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:133711\\nUniqueId@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:133589\\nTagManager@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:146487\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:149967\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:2 \n",
|
|
"7 \n",
|
|
"8 \n",
|
|
"9 \n",
|
|
"10 \n",
|
|
"11 CookieUtils/$public.getItem@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:822\\nTagManager/$private.startTMConsole@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:149671\\nTagManager/$public.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:146683\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:150044\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:2 \n",
|
|
"12 CookieUtils/$public.getItem@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:822\\nBehaviouralTargeting/$private.getMergeCookies@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:126936\\nBehaviouralTargeting/$public.getBTCookies@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:126758\\nDataLayer/$private.addBT@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:130059\\nDataLayer/$public.createDataLayer@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:128736\\nTagManager/$public.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:146709\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:150044\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:2 \n",
|
|
"13 CookieUtils/$public.getItem@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:822\\nBehaviouralTargeting/$private.getMergeCookies@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:127010\\nBehaviouralTargeting/$public.getBTCookies@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:126758\\nDataLayer/$private.addBT@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:130059\\nDataLayer/$public.createDataLayer@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:128736\\nTagManager/$public.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:146709\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:150044\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:2 \n",
|
|
"14 \n",
|
|
"15 \n",
|
|
"16 \n",
|
|
"17 \n",
|
|
"18 \n",
|
|
"19 \n",
|
|
"20 \n",
|
|
"21 \n",
|
|
"22 \n",
|
|
"23 \n",
|
|
"24 \n",
|
|
"25 \n",
|
|
"26 \n",
|
|
"27 \n",
|
|
"28 \n",
|
|
"29 \n",
|
|
"30 \n",
|
|
"31 \n",
|
|
"32 \n",
|
|
"33 \n",
|
|
"34 \n",
|
|
"35 \n",
|
|
"36 \n",
|
|
"37 \n",
|
|
"38 \n",
|
|
"39 \n",
|
|
"40 \n",
|
|
"41 \n",
|
|
"42 \n",
|
|
"43 \n",
|
|
"44 \n",
|
|
"45 \n",
|
|
"46 \n",
|
|
"47 CookieUtils/$public.getItem@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:822\\nIdentify/$public.isOptOutEnabled@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:110029\\nIdentify/$public.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:109441\\nnameSpace.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:115277\\nTagController/$private.activateTag@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:126077\\nTagController/$public.triggerEvents@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:125750\\nTagManager/$private.createModules@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:147449\\nTagManager/$public.init@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:146975\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:150044\\n@http://tm.jsuol.com.br/uoltm.js?id=mzjgr6:1:2 \n",
|
|
"48 \n",
|
|
"49 \n",
|
|
"50 \n",
|
|
"51 \n",
|
|
"52 \n",
|
|
"53 \n",
|
|
"54 \n",
|
|
"55 \n",
|
|
"56 \n",
|
|
"57 \n",
|
|
"58 \n",
|
|
"59 \n",
|
|
"60 \n",
|
|
"61 \n",
|
|
"62 \n",
|
|
"63 \n",
|
|
"64 \n",
|
|
"65 \n",
|
|
"66 \n",
|
|
"67 \n",
|
|
"68 \n",
|
|
"69 \n",
|
|
"70 \n",
|
|
"71 \n",
|
|
"\n",
|
|
" file_name \n",
|
|
"0 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"1 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"2 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"3 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"4 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"5 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"6 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"7 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"8 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"9 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"10 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"11 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"12 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"13 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"14 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"15 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"16 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"17 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"18 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"19 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"20 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"21 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"22 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"23 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"24 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"25 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"26 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"27 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"28 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"29 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"30 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"31 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"32 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"33 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"34 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"35 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"36 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"37 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"38 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"39 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"40 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"41 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"42 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"43 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"44 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"45 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"46 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"47 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"48 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"49 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"50 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"51 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"52 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"53 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"54 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"55 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"56 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"57 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"58 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"59 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"60 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"61 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"62 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"63 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"64 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"65 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"66 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"67 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"68 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"69 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"70 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json \n",
|
|
"71 s3://safe-ucosp-2017/1_00018c3bdd6a2811ce0f3157e4ef8e28c0b5d017e5ff5e28866df78c.json "
|
|
]
|
|
},
|
|
"execution_count": 113,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"DF.toPandas()"
|
|
]
|
|
}
|
|
],
|
|
"metadata": {
|
|
"anaconda-cloud": {},
|
|
"kernelspec": {
|
|
"display_name": "Python [default]",
|
|
"language": "python",
|
|
"name": "python2"
|
|
},
|
|
"language_info": {
|
|
"codemirror_mode": {
|
|
"name": "ipython",
|
|
"version": 2
|
|
},
|
|
"file_extension": ".py",
|
|
"mimetype": "text/x-python",
|
|
"name": "python",
|
|
"nbconvert_exporter": "python",
|
|
"pygments_lexer": "ipython2",
|
|
"version": "2.7.12"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 1
|
|
}
|